diff options
Diffstat (limited to 'data/extensions/SimpleSumOfUs@0xbeef.coffee/manifest.json')
-rw-r--r-- | data/extensions/SimpleSumOfUs@0xbeef.coffee/manifest.json | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/data/extensions/SimpleSumOfUs@0xbeef.coffee/manifest.json b/data/extensions/SimpleSumOfUs@0xbeef.coffee/manifest.json new file mode 100644 index 0000000..3dae004 --- /dev/null +++ b/data/extensions/SimpleSumOfUs@0xbeef.coffee/manifest.json @@ -0,0 +1,35 @@ +{ + "manifest_version": 2, + "name": "LibreJS compatible SumOfUs.org", + "version": "1.0", + "author": "Nathan Nichols", + "description": "Makes sumofus.org compatible with LibreJS.", + "applications": { + "gecko": { + "id": "SimpleSumOfUs@0xbeef.coffee", + "strict_min_version": "42.0" + } + }, + "permissions": [ + "webRequestBlocking", + "*://*.sumofus.org/*", + "*://*.actions.sumofus.org/*", + "webRequest" + ], + + "background": { + "scripts": ["background.js"] + }, + "content_scripts": [ + { + "matches": [ + "https://www.sumofus.org/campaigns/*", + "*://*.actions.sumofus.org/a/*", + "*://*.actions.sumofus.org/api/pages/*/actions" + ], + "js": [ + "main.js" + ] + } + ] +} |