-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (34 loc) · 877 Bytes
/
manifest.json
File metadata and controls
34 lines (34 loc) · 877 Bytes
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
{
"manifest_version": 3,
"name": "프라이버시 숨기기",
"description": "사이트 내에 개인정보를 숨깁니다",
"version": "0.1.4.0",
"author": "getCurrentThread",
"action": {
"default_icon": "icons/icon_on_256.png"
},
"icons": {
"16": "icons/icon_on_16.png",
"48": "icons/icon_on_48.png",
"128": "icons/icon_on_128.png"
},
"background": {
"service_worker": "background.js"
},
"permissions": ["storage", "scripting", "history", "unlimitedStorage", "webNavigation", "bookmarks", "tabs", "contextMenus"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"all_frames": true,
"css": ["content.css"],
"js": ["content.js"],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": ["default_newtab.html"],
"matches": ["<all_urls>"]
}
]
}