summaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json11
1 files changed, 9 insertions, 2 deletions
diff --git a/manifest.json b/manifest.json
index c1935ef..f405e2c 100644
--- a/manifest.json
+++ b/manifest.json
@@ -1,7 +1,11 @@
{
"name": "Tiny Tiny RSS Notifier",
- "background_page": "background.html",
+ "background": {
+ "scripts": ["js/background.js"],
+ "persistent": false
+ },
"version": "0.5.1",
+ "manifest_version": 2,
"description": "This extension displays the number of unread articles in your Tiny Tiny RSS installation",
"options_page": "options.html",
"icons": { "48": "images/icon_48.png", "128": "images/icon_128.png" },
@@ -9,5 +13,8 @@
"default_icon": "images/normal.png",
"default_title": "You have no unread articles."
},
- "permissions": [ "http://*/*", "https://*/*" ]
+ "permissions": [
+ "alarms",
+ "http://*/*",
+ "https://*/*"]
}