-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
48 lines (48 loc) · 1.18 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name":"Akita",
"version":"1.1.1",
"manifest_version": 2,
"description":"Insight into your engagement with Web Monetization",
"icons": {
"16": "assets/icons/icon_16x16.png",
"48": "assets/icons/icon_48x48.png",
"128": "assets/icons/icon_128x128.png"
},
"permissions":[
"storage",
"https://*/*"
],
"background": {
"scripts": ["src/background_script.js"]
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": [
"src/data/WebMonetizationAsset.js",
"src/data/AkitaPaymentPointerData.js",
"src/data/AkitaOriginVisitData.js",
"src/data/AkitaOriginData.js",
"src/data/AkitaOriginStats.js",
"src/data/storage.js",
"src/content_scripts/content_general.js"
],
"all_frames":true
},
{
"matches": ["http://*/*", "https://*/*"],
"js": ["src/content_scripts/content_origin.js"]
},
{
"matches": ["http://*/*", "https://*/*"],
"js": ["src/content_scripts/content_iframe.js"],
"all_frames":true
}
],
"web_accessible_resources": ["src/page_inject_script.js"],
"browser_action": {
"default_icon": "assets/icons/icon_unmonetized.png",
"default_popup": "src/popup/popup.html",
"default_title": "Akita"
}
}