Guest User

Untitled

a guest
Aug 25th, 2015
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.97 KB | None | 0 0
  1. {
  2.     "manifest_version": 2,
  3.     "version": "1.0",
  4.     "default_locale": "de",
  5.     "name": "foo"
  6.     "description": "foo",
  7.  
  8.     "applications": {
  9.         "gecko": {
  10.             "id": "[email protected]",
  11.             "strict_min_version": "40.0.0",
  12.             "strict_max_version": "50.*",
  13.             "update_url": "https://foo/bar"
  14.         }
  15.     },
  16.  
  17.     "background": {
  18.         "page": "background.html"
  19.     },
  20.  
  21.     "options_page": "settings.html",
  22.  
  23.     "browser_action": {
  24.         "default_icon": {                    
  25.             "19": "images/icon_locked_19.png",  
  26.             "38": "images/icon_locked_38.png"
  27.         },
  28.         "default_popup": "popup.html",
  29.         "default_title": "foo"
  30.     },
  31.  
  32.     "content_scripts": [
  33.         {
  34.             "matches": ["*://*/*"],
  35.             "css": ["jquery-ui.min.css", "page.css", "compiled.css"],
  36.             "js": ["jquery-2.1.4.min.js", "jquery-ui.min.js", "jquery.blockUI.js", "hideShowPassword.min.js", "page.js"]
  37.         }
  38.     ],
  39.  
  40.     "permissions": [
  41.         "clipboardWrite",
  42.         "clipboardRead",
  43.         "tabs",
  44.         "http://localhost/*"
  45.     ],
  46.  
  47.     "web_accessible_resources": ["images/*.png"]
  48. }
Advertisement
Add Comment
Please, Sign In to add comment