-
Notifications
You must be signed in to change notification settings - Fork 25
/
manifest.json
40 lines (40 loc) · 1.08 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
{
"manifest_version": 2,
"name": "Service Worker Detector",
"short_name": "SW Detector",
"description": "This extension detects if a website registers a Service Worker.",
"author": "Thomas Steiner ([email protected], @tomayac)",
"version": "2.4.1",
"icons": {
"16": "assets/icon-female-16.png",
"48": "assets/icon-female.png",
"128": "assets/icon-female-128.png",
"160": "assets/icon-female.png",
"512": "assets/icon-female-512.png",
"1024": "assets/icon-female-1024.png"
},
"page_action": {
"default_icon": {
"19": "assets/icon.png",
"38": "assets/icon.png",
"40": "assets/icon.png",
"160": "assets/icon.png"
},
"default_popup": "popup.html",
"default_title": "❌👷 No active Service Worker found."
},
"permissions": ["activeTab"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["contentscript.js"],
"run_at": "document_idle",
"all_frames": false
}
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"minimum_chrome_version": "40"
}