forked from ishefi/let-me-read
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 1.19 KB
/
manifest.json
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
{
"name": "Let Me Read Haaretz (Desktop & Android)",
"short_name": "LetMeReadAndroid",
"version": "0.1.1",
"content_scripts": [
{
"matches": ["https://www.haaretz.co.il/*",
"https://www.haaretz.com/*",
"https://www.themarker.com/*"
],
"js": ["content.js"]
}
],
"permissions": ["activeTab", "storage", "webRequest", "webRequestBlocking", "https://www.haaretz.co.il/*", "https://www.haaretz.com/*", "https://www.themarker.com/*", "https://www.quora.com/*"],
"description": "Allows you to read full articles from haaretz.co.il, haaretz.com, themarker.co.il without any pay banners. Works also in incognito",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/bonobo16.png",
"32": "images/bonobo32.png",
"48": "images/bonobo48.png",
"128": "images/bonobo_icon.png"
}
},
"icons": {
"16": "images/bonobo16.png",
"32": "images/bonobo32.png",
"48": "images/bonobo48.png",
"128": "images/bonobo_icon.png"
},
"manifest_version": 2
}