X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=manifest.json;h=1929cd9eef509d3acef174a861fc5411d0ecba14;hb=a3c71eebbda67bf92f5f419dc39f76df1d27835b;hp=de75f53bc8f71479da39e4b4659dc9827767628a;hpb=cca5655fcf634a6a4d7aedbcaea1fa41810de401;p=chrome-ext%2Fclearhistory-advance-fork.git diff --git a/manifest.json b/manifest.json index de75f53..1929cd9 100644 --- a/manifest.json +++ b/manifest.json @@ -2,35 +2,33 @@ "name": "__MSG_name__", "default_locale": "en", "manifest_version": 2, - "version": "1.5.0", + "minimum_chrome_version": "28", + "version": "1.5.6", "description": "__MSG_description__", "permissions": [ - "tabs", + "alarms", "history", "cookies", + "downloads", "notifications", + "storage", "http://*/*", "https://*/*" ], "background": { - "scripts": [ - "javascript/background.js", - "javascript/util.js", - "javascript/clearhistory.js" - ] + "persistent": false, + "page": "views/background.html" }, "options_page": "views/options.html", "browser_action": { "default_icon": "images/icon32.png", - "default_title": "__MSG_title__" + "default_title": "__MSG_title__", + "default_popup": "views/popup.html" }, "icons": { "16": "images/icon16.png", "32": "images/icon32.png", "48": "images/icon48.png", "128": "images/icon128.png" - }, - "web_accessible_resources": [ - "images/icon48.png" - ] + } }