Inspect and view changes in ニコニコ・ブラウザ縮小対応 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "ニコニコ・ブラウザ縮小対応",
"version": "0.5.3",
"manifest_version": 2,
"description": "ニコニコでブラウザが小さいときに縮小して表示させる拡張。新配信・HTML5プレイヤーのみ対応。",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"browser_action": {
"default_title": "ニコニコ・ブラウザ縮小対応",
"default_icon": {
"19": "img/icon19.png",
"38": "img/icon38.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http://www.nicovideo.jp/*",
"http://live.nicovideo.jp/*",
"http://live2.nicovideo.jp/*"
],
"css": [
"css/style.css"
],
"js": [
"js/jquery-2.2.4.min.js",
"js/content_scripts.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"img/*"
],
"permissions": [
"activeTab",
"storage",
"unlimitedStorage"
]
}