]> git.wh0rd.org - chrome-ext/clearhistory-advance-fork.git/blobdiff - manifest.json
convert JS to ES6 modules
[chrome-ext/clearhistory-advance-fork.git] / manifest.json
index 36a59b47a0f47642b749ad613943fa834c931beb..5094d6e6c477f8b8f2b072ddcf2ea7afaa8fea62 100644 (file)
@@ -3,11 +3,10 @@
   "default_locale": "en",
   "manifest_version": 2,
   "minimum_chrome_version": "28",
-  "version": "1.5.5",
+  "version": "1.5.6",
   "description": "__MSG_description__",
   "permissions": [
     "alarms",
-    "tabs",
     "history",
     "cookies",
     "downloads",
   ],
   "background": {
     "persistent": false,
-    "scripts": [
-      "javascript/background.js",
-      "javascript/util.js",
-      "javascript/clearhistory.js"
-    ]
+    "page": "views/background.html"
   },
   "options_page": "views/options.html",
   "browser_action": {
@@ -34,8 +29,5 @@
     "32": "images/icon32.png",
     "48": "images/icon48.png",
     "128": "images/icon128.png"
-  },
-  "web_accessible_resources": [
-    "images/icon128.png"
-  ]
+  }
 }