From cf8c1d39eb4d2ccd8cb5dfbe7931bc2aa116a3c7 Mon Sep 17 00:00:00 2001 From: Nick White Date: Thu, 11 Nov 2010 19:46:20 +0000 Subject: Add basic chromium extension --- chromium/background.html | 5 +++++ chromium/icon.png | Bin 0 -> 388 bytes chromium/manifest.json | 8 ++++++++ 3 files changed, 13 insertions(+) create mode 100644 chromium/background.html create mode 100644 chromium/icon.png create mode 100644 chromium/manifest.json (limited to 'chromium') diff --git a/chromium/background.html b/chromium/background.html new file mode 100644 index 0000000..669ff78 --- /dev/null +++ b/chromium/background.html @@ -0,0 +1,5 @@ + diff --git a/chromium/icon.png b/chromium/icon.png new file mode 100644 index 0000000..5470e39 Binary files /dev/null and b/chromium/icon.png differ 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" } +} -- cgit v1.2.3