-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
52 lines (52 loc) · 1.27 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
49
50
51
52
{
"manifest_version": 2,
"name": "CartUtil",
"version": "1.5.0",
"description": "共有可能なほしい物リストを提供します。",
"permissions": [
"tabs",
"storage",
"declarativeContent"
],
"icons": {
"16": "assets/icons/icon16.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
},
"page_action": {
"default_icon": {
"16": "assets/icons/icon16.png"
},
"default_title": "CartUtil",
"default_popup": "src/popup/popup.html"
},
"content_scripts": [
{
"matches": [
"http://akizukidenshi.com/*",
"https://akizukidenshi.com/*",
"https://www.switch-science.com/*"
],
"js": [
"src/cscript/inject.js"
],
"css": [
"src/cscript/style.css"
]
}
],
"web_accessible_resources": [
"assets/**",
"src/**",
"src/lib/**",
"assets/**"
],
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": true
},
"background": {
"page": "src/background/background.html",
"persistent": false
}
}