-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
36 lines (36 loc) · 990 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
32
33
34
35
36
{
"manifest_version" : 2,
"name" : "コモンズ素材名直送ツール",
"version" : "0.1.7",
"description" : "ニコニ・コモンズにて素材名をファイル名に付加した状態でダウンロードできるようにする拡張機能",
"author" : "istallia",
"icons" : {
"32" : "icon_32.png",
"48" : "icon_48.png",
"128" : "icon_128.png"
},
"content_scripts": [
{
"matches": ["http://commons.nicovideo.jp/material/*", "https://commons.nicovideo.jp/material/*"],
"run_at" : "document_start",
"js": ["content-script.js"]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"options_ui" : {
"page" : "options.html"
},
"permissions" : [
"http://deliver.commons.nicovideo.jp/download/*",
"https://deliver.commons.nicovideo.jp/download/*",
"http://commons.nicovideo.jp/material/*",
"https://commons.nicovideo.jp/material/*",
"webRequest",
"webRequestBlocking"
]
}