summaryrefslogtreecommitdiff
path: root/data/extensions/DMCAreg@0xbeef.coffee/manifest.json
blob: b517556fb9b9c84437f819e14227ac66e4956c52 (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
{
  "manifest_version": 2,
  "name": "LibreJS compatible Pay.gov",
  "version": "1.2",
  "author": "Nathan Nichols",
  "id": "DMCAreg@0xbeef.coffee",
  "description": "Allows LibreJS users to register DMCA claim contacts at the DMCA registry.",
  "icons": {
    "16": "icons/L4Libre.png",
    "48": "icons/L4Libre48.png",
    "128": "icons/L4Libre128.png"
  },
  "applications": {
    "gecko": {
	  "id": "DMCAreg@0xbeef.coffee",
	  "strict_min_version": "42.0"
    }
  },

  "permissions": [
    "webRequest",
	"webRequestBlocking"
  ],
  "background": {
    "scripts": ["blockjs1.js"]
  },

  "content_scripts": [
    {
      "matches": [
        "https://www.pay.gov/tcsonline/*",
		"https://dmca.copyright.gov/*"
      ],
      "js": [
        "pay.js"
      ]
    }
  ]
}