Inspect and view changes in nicodw source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"description": "ニコ動の動画をコメント付きで取得します。",
"manifest_version": 2,
"name": "nicodw",
"version": "0.9.2",
"icons": {
"25": "icons/25-siro.png",
"48": "icons/48-siro.png",
"96": "icons/96-siro.png",
"144": "icons/144-siro.png"
},
"browser_action": {
"default_icon": {
"48": "icons/48-siro.png"
}
},
"background": {
"scripts": [
"background/background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*.nicovideo.jp/*"
],
"js": [
"content_scripts/jquery-3.3.1.min.js",
"content_scripts/nicodw.js"
],
"css": [
"content_scripts/nicodw.css"
],
"run_at": "document_idle"
}
],
"options_ui": {
"page": "options/options.html"
},
"permissions": [
"storage"
]
}