niconicoamp
ニコニコ動画の再生/一時停止をどこからでも
What is niconicoamp?
niconicoamp is a Chrome extension developed by takc923, and its main feature is "ニコニコ動画の再生/一時停止をどこからでも".
Extension Screenshots
Download niconicoamp Extension CRX File
Download niconicoamp extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
niconicoampはニコニコ動画を作業用BGMに使っている人に最適なChrome拡張です。 niconicoampをインストールしてからニコニコ動画の動画ページを開くとメニュー右端に⊕ボタンが増えているはずです。このボタンを押すとその動画が登録されます。あとはツールバーの►/❚❚ボタンをクリック、あるいはAlt+Zを押すことでその動画の再生/一時停止が出来ます。 https://github.com/takc923/niconicoamp
Extension Basic Information
Name | |
ID | dmogkbbnlpphlnocjbaigpfdnmocnnkd |
Official URL | https://chrome.google.com/webstore/detail/niconicoamp/dmogkbbnlpphlnocjbaigpfdnmocnnkd |
Description | ニコニコ動画の再生/一時停止をどこからでも |
File Size | 17.59 KB |
Installation Count | 30 |
Current Version | 0.1.5 |
Last Updated | 2014-11-22 |
Publish Date | 2014-11-22 |
Rating | 5.00/5 Total 2 Ratings |
Developer | takc923 |
Payment Type | free |
Extension Website | https://github.com/takc923/niconicoamp |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "niconicoamp", "manifest_version": 2, "version": "0.1.5", "description": "\u30cb\u30b3\u30cb\u30b3\u52d5\u753b\u306e\u518d\u751f\/\u4e00\u6642\u505c\u6b62\u3092\u3069\u3053\u304b\u3089\u3067\u3082", "icons": { "128": "icon\/icon48.png", "48": "icon\/icon48.png", "16": "icon\/icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.nicovideo.jp\/watch\/*" ], "js": [ "niconicoamp.js" ] } ], "commands": { "toggle-play-and-stop": { "suggested_key": { "default": "Alt+Z" }, "description": "Toggle play and stop" } }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs" ], "browser_action": { "default_icon": "icon\/icon.png", "default_title": "niconicoamp" }, "web_accessible_resources": [ "icon\/*" ] } |