aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
blob: 5a1e28d907b904d64c8dfbd5309773cc395912b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{

  "manifest_version": 2,
  "name": "Redirector",
  "version": "3.0",
  
  "icons": {   "16": "images/icon16active.png",
               "32": "images/icon32active.png",
               "48": "images/icon48active.png",
              "128": "images/icon128active.png" },

  "permissions" : ["webRequest", "webRequestBlocking", "storage", "tabs", "http://*/*", "https://*/*"],
  
  "applications": {
    "gecko": {
      "id": "redirector@einaregilsson.com"
    }
  },

 "background": {
    "scripts": ["js/redirect.js", "js/background.js"],
    "persistent": true
  },

  "options_ui": {
    "page": "popup.html",
    "chrome_style": true
  },

  "browser_action": {
    "default_icon": {
      "19": "images/icon19active.png",
      "38": "images/icon38active.png" 
    },
    "default_title": "Redirector",
    "default_popup": "popup.html"
  }
}