summaryrefslogtreecommitdiff
path: root/firefox/manifest.json
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2017-01-03 15:03:44 +0200
committerYuval Adam <_@yuv.al>2017-01-03 15:03:44 +0200
commit38d0d94a219ad7043ace435b465a9b912e4e3c98 (patch)
treea6c4362491534d212bf919cfa21753f0d4beeea3 /firefox/manifest.json
parentf216d62f82981965a630d7a8e734a7aa48e8cde5 (diff)
Replace old firefox code with chrome web extension APIs
Diffstat (limited to 'firefox/manifest.json')
-rw-r--r--firefox/manifest.json22
1 files changed, 22 insertions, 0 deletions
diff --git a/firefox/manifest.json b/firefox/manifest.json
new file mode 100644
index 0000000..6af4816
--- /dev/null
+++ b/firefox/manifest.json
@@ -0,0 +1,22 @@
+{
+ "name": "FreeHaaretz",
+ "version": "0.7.1",
+ "manifest_version": 2,
+ "description": "A nefarious extension that easily bypasses the Haaretz paywall",
+ "homepage_url": "http://yuvadm.github.io/free-haaretz",
+ "background": {
+ "scripts": ["free_haaretz.js"],
+ "persistent": true
+ },
+ "content_scripts": [{
+ "matches": ["*://*.haaretz.co.il/*"],
+ "css": ["free_haaretz.css"]
+ }],
+ "permissions": [
+ "contentSettings",
+ "webRequest",
+ "webRequestBlocking",
+ "http://*.haaretz.co.il/",
+ "http://*.haaretz.com/"
+ ]
+}