Guest User

Untitled

a guest
Jan 2nd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.87 KB | None | 0 0
  1. {
  2.   "name": "__MSG_appName__",
  3.   "version": "0.0.1",
  4.   "manifest_version": 2,
  5.   "description": "__MSG_appDescription__",
  6.   "icons": {
  7.     "16": "icons/icon-16.png",
  8.     "128": "icons/icon-128.png"
  9.   },
  10.   "default_locale": "en",
  11.   "background": {
  12.     "scripts": [
  13.       "scripts/background.js"
  14.     ]
  15.   },
  16.   "permissions": [
  17.     "tabs",
  18.     "storage",
  19.     "http://*/*",
  20.     "https://*/*"
  21.   ],
  22.   "options_ui": {
  23.     "page": "options.html"
  24.   },
  25.   "content_scripts": [
  26.     {
  27.       "matches": [
  28.         "http://*/*",
  29.         "https://*/*"
  30.       ],
  31.       "js": [
  32.         "scripts/contentscript.js"
  33.       ],
  34.       "run_at": "document_end",
  35.       "all_frames": false
  36.     }
  37.   ],
  38.   "browser_action": {
  39.     "default_icon": {
  40.       "19": "",
  41.       "38": ""
  42.     },
  43.     "default_title": "Extension Boilerplate",
  44.     "default_popup": "popup.html"
  45.   }
  46. }
Add Comment
Please, Sign In to add comment