summaryrefslogtreecommitdiff
path: root/data/extensions/FreeUSPS@0xbeef.coffee/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'data/extensions/FreeUSPS@0xbeef.coffee/manifest.json')
-rw-r--r--data/extensions/FreeUSPS@0xbeef.coffee/manifest.json37
1 files changed, 37 insertions, 0 deletions
diff --git a/data/extensions/FreeUSPS@0xbeef.coffee/manifest.json b/data/extensions/FreeUSPS@0xbeef.coffee/manifest.json
new file mode 100644
index 0000000..fe06261
--- /dev/null
+++ b/data/extensions/FreeUSPS@0xbeef.coffee/manifest.json
@@ -0,0 +1,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"
+ ]
+ }
+ ]
+}