Youtube Repeat
Save your preference once and it will repeat the video for your favourite songs
Youtube Repeatとは何ですか?
Youtube Repeatはmercury200Hgによって開発されたChromeの拡張機能で、その主な機能は「Save your preference once and it will repeat the video for your favourite songs」です。
拡張機能のスクリーンショット
Youtube Repeat拡張機能のCRXファイルをダウンロード
Youtube Repeat拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Single repeat choice for all YouTube links. - Just save your preference once and then enjoy repeated playback of your favorite songs and videos on YouTube without reloading your webpage or requirement to consume additional Internet usage. Icons used are made by Freepick from www.flaticons.com
拡張機能の基本情報
名前 | Youtube Repeat |
ID | mbimaenpniemflhmhbahldkfppflbcjh |
公式URL | https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh |
説明 | Save your preference once and it will repeat the video for your favourite songs |
ファイルサイズ | 8.63 KB |
インストール数 | 361 |
現在のバージョン | 1.0.0 |
最終更新日 | 2017-03-12 |
公開日 | 2017-03-12 |
評価 | 4.33/5 合計 6 レビュー |
開発者 | mercury200Hg |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Repeat", "browser_action": { "default_icon": "loop-arrow-32.png", "default_popup": "popup.html", "default_title": "Click repeat" }, "description": "Save your preference once and it will repeat the video for your favourite songs", "icons": { "128": "loop-arrow-128.png", "32": "loop-arrow-32.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "tabs", "webNavigation", "*:\/\/*.youtube.com\/*", "storage" ], "version": "1.0.0" } |