Advertisement
Ladies_Man

CX el manifesto Example

Jul 21st, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "manifest_version": 2,
  3.     "name": "-",
  4.     "version": "0.0",
  5.     "description": "-",
  6.     "browser_action": {
  7.         "default_icon": "icon.png",
  8.         "default_title": "-",
  9.         "default_popup": "popup.html"
  10.     },
  11.     "background": {
  12.         "scripts": ["bckgr.js"],
  13.         "persistent": false
  14.     },
  15.     "content_scripts": [
  16.         {
  17.             "matches": ["<all_urls>"],
  18.             "js": ["content.js"]
  19.         }
  20.     ],
  21.     "permissions": [
  22.         "tabs",
  23.         "activeTab",
  24.         "<all_urls>",
  25.         "storage"
  26.     ]
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement