YouTube Repeat
Repeats a YouTube video
YouTube Repeatとは何ですか?
YouTube RepeatはJimmy Fuによって開発されたChromeの拡張機能で、その主な機能は「Repeats a YouTube video」です。
拡張機能のスクリーンショット
YouTube Repeat拡張機能のCRXファイルをダウンロード
YouTube Repeat拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Minimalistic extension for replaying YouTube videos. Instructions: 1) Open a YouTube video 2) On the top-right corner, a repeat icon will appear (See screenshot if you are confused) 3) Press it to enable or disable
拡張機能の基本情報
名前 | YouTube Repeat |
ID | bijjfhgimphjklllkmbdapkfemdnhmpj |
公式URL | https://chromewebstore.google.com/detail/youtube-repeat/bijjfhgimphjklllkmbdapkfemdnhmpj |
説明 | Repeats a YouTube video |
ファイルサイズ | 24.45 KB |
インストール数 | 2,323 |
現在のバージョン | 1.1 |
最終更新日 | 2015-10-09 |
公開日 | 2015-10-08 |
評価 | 4.37/5 合計 35 レビュー |
開発者 | Jimmy Fu |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Repeat", "short_name": "Repeat", "description": "Repeats a YouTube video", "version": "1.1", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": "images\/icon.png", "default_title": "Repeat" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content_script.js" ], "matches": [ "*:\/\/youtube.com\/*", "*:\/\/*.youtube.com\/*" ], "run_at": "document_start" } ], "permissions": [ "tabs" ] } |