summaryrefslogtreecommitdiff
path: root/data/extensions/gnuzilla-ext-workarounds@gnu.org/manifest.json
blob: 1e9d5dd817ba44a1612dc0ebe79a5c5b2f55f82d (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
    "manifest_version": 2,
    "name": "Workarounds for nonfree JS",
    "version": "1.0",
    "author": "Nathan Nichols",
    "description": "A collection of work-around scripts for a few different websites that are impossible to use without non-free JavaScript.",
    "icons": {
	    "16": "icons/L4Libre.png",
	    "48": "icons/L4Libre48.png",
	    "128": "icons/L4Libre128.png"
    },
    "browser_action": {
	    "default_icon": "icons/test.png",
	    "default_title": "Launch USPS tools"
    },
    "applications": {
	"gecko": {
	    "id": "gnuzilla-ext-workarounds@gnu.org",
	    "strict_min_version": "42.0"
	}
    },
    "background":{
	    "scripts": ["background.js"]
    },
    "content_scripts": [
	    {
	        "matches": [
                "*://*.wayport.net/*",
			    "https://www.sumofus.org/*",
			    "https://www.sumofus.org/campaigns/*",
			    "*://*.actions.sumofus.org/a/*",
			    "*://*.actions.sumofus.org/api/pages/*/actions",
			    "*://*.actions.sumofus.org/*",
			    "https://*.pay.gov/*",
			    "https://dmca.copyright.gov/*",
			    "*://rsf.org/*",
			    "*://rsf.secure.force.com/*",
			    "*://docs.google.com/*",
			    "*://login-mcd-cluster.prd.snantx.attwifi.com/guest/*",
			    "https://pgw.ceca.es/cgi-bin/tpv",
			    "https://pgw.ceca.es/tpvweb/tpv/compra.action",
			    "*://*.goteo.org/*",
			    "*://*.sermepa.es/*"
		    ],
	        "js": [
		        "workaround/mcdonalds_wifi.js",
		        "workaround/sumofus_main.js",
		        "workaround/paygov_main.js",
		        "workaround/rsf_main.js",
		        "workaround/googledocs_main.js",
		        "workaround/goteo_main.js"
		    ]
	    }
    ],
    "permissions":[
	    "*://reg.usps.com/*",
	    "*://production.shippingapis.com/*",
	    "webRequestBlocking",
	    "*://*.sumofus.org/*",
	    "*://*.actions.sumofus.org/*",
	    "webRequest",
	    "*://*.pay.gov/*"
    ]
}