YouTube Repeater
Repeats YouTube video after it ends.
YouTube Repeaterとは何ですか?
YouTube Repeaterはshogoによって開発されたChromeの拡張機能で、その主な機能は「Repeats YouTube video after it ends.」です。
拡張機能のスクリーンショット
YouTube Repeater拡張機能のCRXファイルをダウンロード
YouTube Repeater拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
You can make your YouTube video repeat automatically right from the page. - No external link - No need for playlists - Repeat infinitely with just 1 click ----- v.0.0.4 ----- Fixed the extension to work with the new YouTube design from fall 2018 ----- v.0.0.3 ----- Fixed the icon to show inactive when on non-youtube pages. ----- v.0.0.2 ----- Fixed icon to show the repeat status when tabs are switched.
拡張機能の基本情報
名前 | ![]() |
ID | lgffcdbnficjmckoidgcmcajeadoekgi |
公式URL | https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi |
説明 | Repeats YouTube video after it ends. |
ファイルサイズ | 16.98 KB |
インストール数 | 423 |
現在のバージョン | 0.0.4 |
最終更新日 | 2019-03-18 |
公開日 | 2019-03-18 |
評価 | 3.50/5 合計 4 レビュー |
開発者 | shogo |
支払い方法 | free |
拡張機能のウェブサイト | http://shogo.eu/ |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Repeater", "description": "Repeats YouTube video after it ends.", "version": "0.0.4", "manifest_version": 2, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "notifications", "webNavigation" ] } |