manifest.json - firefox-fix-web - Firefox extension: fix web
 (HTM) git clone git://git.codemadness.org/firefox-fix-web
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       manifest.json (1991B)
       ---
            1 {
            2         "manifest_version": 2,
            3         "name": "fix-web",
            4         "version": "1.0",
            5         "description": "Scripts to make the web suck less and fixup some things",
            6         "permissions": [ "<all_urls>", "webRequest", "webRequestBlocking" ],
            7         "background": { "scripts": [ "background.js" ] },
            8         "applications": {
            9                 "gecko": {
           10                         "id": "hiltjo@codemadness.org"
           11                 }
           12         },
           13         "content_scripts": [
           14                 {
           15                         "matches": [ "*://*/*" ],
           16                         "js": [ "global/focus.js", "global/fiximg.js" ],
           17                         "css": [ "global/anim.css", "global/preloaders.css" ],
           18                         "all_frames": true
           19                 },
           20                 {
           21                         "matches": [ "*://www.buienradar.nl/*" ],
           22                         "css": [ "site/buienradar.css" ]
           23                 },
           24                 {
           25                         "matches": [ "*://www.gamekings.tv/*" ],
           26                         "js": [ "site/gamekings.js" ],
           27                         "css": [ "site/gamekings.css" ]
           28                 },
           29                 {
           30                         "matches": [ "*://kudtkoekiewet.nl/*" ],
           31                         "js": [ "site/kudtkoekiewet.js" ]
           32                 },
           33                 {
           34                         "matches": [ "*://www.theverge.com/*" ],
           35                         "css": [ "site/theverge.css" ]
           36                 },
           37                 {
           38                         "matches": [ "*://twitter.com/*" ],
           39                         "css": [ "site/twitter.css" ]
           40                 },
           41                 {
           42                         "matches": [ "*://tweakers.net/*" ],
           43                         "js": [ "site/tweakers.js" ]
           44                 },
           45                 {
           46                         "matches": [ "*://www.xs4all.nl/*" ],
           47                         "css": [ "site/xs4all.css" ]
           48                 },
           49                 {
           50                         "matches": [ "*://*.transip.nl/*", "*://*.transip.eu/*" ],
           51                         "js": [ "site/transip.js" ]
           52                 },
           53                 {
           54                         "matches": [ "*://*.steampowered.com/*" ],
           55                         "js": [ "site/steam.js" ]
           56                 },
           57                 {
           58                         "matches": [ "*://*.hardware.info/*" ],
           59                         "css": [ "site/hardwareinfo.css" ],
           60                         "js": [ "site/hardwareinfo.js" ]
           61                 },
           62                 {
           63                         "matches": [ "*://imgur.com/*" ],
           64                         "js": [ "site/imgur.js" ]
           65                 },
           66                 {
           67                         "matches": [ "*://old.reddit.com/*" ],
           68                         "css": [ "site/reddit.css" ]
           69                 },
           70                 {
           71                         "matches": [ "*://*.patreon.com/*" ],
           72                         "css": [ "site/patreon.css" ]
           73                 },
           74                 {
           75                         "matches": [ "*://*.nos.nl/*", "*://nos.nl/*" ],
           76                         "css": [ "site/nos.css" ]
           77                 },
           78                 {
           79                         "matches": [ "*://*.blender.org/*" ],
           80                         "css": [ "site/blender.css" ]
           81                 },
           82                 {
           83                         "matches": [ "*://*.google.com/*", "*://*.google.nl/*" ],
           84                         "js": [ "site/google.js" ]
           85                 }
           86         ]
           87 }