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
|
{
"manifest_version": 2,
"name": "LibreJS/USPS compatibility",
"version": "1.0",
"author": "Nathan Nichols",
"description": "LibreJS compatible USPS.com shipping calculator.",
"applications": {
"gecko": {
"id": "FreeUSPS@0xbeef.coffee",
"strict_min_version": "42.0"
}
},
"icons": {
"16": "icons/I16.png",
"48": "icons/I48.png",
"128": "icons/I128.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"*://www.postcalc.usps.com/*"
],
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": [
"https://postcalc.usps.com/*"
],
"js": [
"main.js"
]
}
]
}
|