This repository was archived by the owner on Feb 10, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmanifest.json
More file actions
63 lines (63 loc) · 1.35 KB
/
manifest.json
File metadata and controls
63 lines (63 loc) · 1.35 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"manifest_version": 2,
"name": "Appodeal",
"short_name": "Appodeal Admob Sync",
"description": "This extension will create and sync Appodeal adunits in your Admob account.",
"minimum_chrome_version": "62",
"version": "18.20.01",
"browser_action": {
"default_icon": {
"16": "img/icon/icon-16.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "img/icon/icon-16.png",
"32": "img/icon/icon-32.png",
"64": "img/icon/icon-64.png",
"128": "img/icon/icon-128.png"
},
"content_scripts": [
{
"matches": [
"https://console.developers.google.com/*"
],
"js": [],
"css": [
"css/modal.console.css"
]
},
{
"matches": [
"https://apps.admob.com/*"
],
"js": [],
"css": [
"css/modal.css"
]
}
],
"web_accessible_resources": [
"img/*",
"js/vendor/*"
],
"permissions": [
"tabs",
"cookies",
"storage",
"notifications",
"webNavigation",
"identity",
"*://*.appodeal.com/*",
"*://*.admob.com/*",
"*://console.developers.google.com/*",
"*://chrome.google.com/webstore/detail/appodeal/*"
],
"externally_connectable": {
"matches": [
"*://*.admob.com/*",
"*://console.developers.google.com/*",
"*://chrome.google.com/webstore/detail/appodeal/*"
]
}
}