-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
35 lines (35 loc) · 873 Bytes
/
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
{
"name": "Delfi/Postimees Paywall Detector",
"version": "2.2",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"*://*.delfi.ee/*",
"*://*.postimees.ee/*",
"http://ec2-18-185-111-192.eu-central-1.compute.amazonaws.com:3000/delfi",
"http://ec2-18-185-111-192.eu-central-1.compute.amazonaws.com:3000/postimees"
],
"js": ["content.js"]
}
],
"browser_action": {
"default_title": "Delfi/Postimees Paywall Detector",
"default_icon": {
"16": "images/pw16.png",
"32": "images/pw32.png",
"48": "images/pw48.png",
"128": "images/pw128.png"
}
},
"background": {
"scripts": ["background.js"]
},
"icons": {
"16": "images/pw16.png",
"32": "images/pw32.png",
"48": "images/pw48.png",
"128": "images/pw128.png"
},
"permissions": ["tabs"]
}