YouTube Repeater
Youtubeをリピート再生する。
What is YouTube Repeater?
YouTube Repeater is a Chrome extension developed by 斉藤 洸紀, and its main feature is "Youtubeをリピート再生する。".
Extension Screenshots
Download YouTube Repeater Extension CRX File
Download YouTube Repeater 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
YouTube Repeater YouTubeのビデオをリピート再生できるようにします。 この拡張機能をインストールしている状態でYouTubeを開くと、URLの右にアイコンが表示されます。 このアイコンをクリックすることで、YouTubeのビデオが終了した時に自動的にリピート再生されます。 音楽をずっと流しておきたい時等に便利です。
Extension Basic Information
Name | |
ID | lnpobfknjaodigeaeiipmadlelgccfdo |
Official URL | https://chrome.google.com/webstore/detail/youtube-repeater/lnpobfknjaodigeaeiipmadlelgccfdo |
Description | Youtubeをリピート再生する。 |
File Size | 27.08 KB |
Installation Count | 40 |
Current Version | 1.1.0 |
Last Updated | 2013-03-31 |
Publish Date | 2013-03-31 |
Rating | 2.50/5 Total 2 Ratings |
Developer | 斉藤 洸紀 |
Payment Type | free |
Supported Languages | ja |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Repeater", "version": "1.1.0", "manifest_version": 2, "description": "Youtube\u3092\u30ea\u30d4\u30fc\u30c8\u518d\u751f\u3059\u308b\u3002", "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end" } ], "icons": { "48": "icon.png", "128": "icon.png" }, "permissions": [ "tabs", "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ] } |