forked from johnmichel/Library-Detector-for-Chrome
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
31 lines (31 loc) · 817 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
{
"name": "Library Detector",
"version": "1.0",
"description": "Detects the Javascript library running on a page and displays it's icon in the address bar.",
"icons": {
"48": "icon_48.png",
"128": "icon_128.png"
},
"background_page": "background.html",
"page_action": {
"default_icon": "icons/null.png",
"default_title": "Library Detector"
},
"permissions": [
"tabs",
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["inject.js"],
"run_at": "document_end"
},
{
"matches": ["http://*/*", "https://*/*"],
"js": ["detect.js"],
"run_at": "document_idle"
}
]
}