summaryrefslogtreecommitdiff
path: root/chromium/manifest.json
diff options
context:
space:
mode:
authorNick White <git@njw.me.uk>2010-11-11 19:46:20 +0000
committerNick White <git@njw.me.uk>2010-11-11 19:46:20 +0000
commitcf8c1d39eb4d2ccd8cb5dfbe7931bc2aa116a3c7 (patch)
tree7cab2d7f3bdf31b01f8b66eff6a1132247a3d32d /chromium/manifest.json
parent6db0cdc5206417ad9f19c3b4a8422fe268957cd0 (diff)
Add basic chromium extension
Diffstat (limited to 'chromium/manifest.json')
-rw-r--r--chromium/manifest.json8
1 files changed, 8 insertions, 0 deletions
diff --git a/chromium/manifest.json b/chromium/manifest.json
new file mode 100644
index 0000000..875c633
--- /dev/null
+++ b/chromium/manifest.json
@@ -0,0 +1,8 @@
+{
+ "name": "Readable",
+ "version": "VERSION",
+ "background_page": "background.html",
+ "permissions": [ "tabs", "*://*/*" ],
+ "content_scripts": [{"matches": ["*://*/*"], "js": ["readable.js"]}],
+ "browser_action": { "default_icon": "icon.png" }
+}