YouTube Repeat Button
YouTube Repeat Button.
YouTube Repeat Buttonとは何ですか?
YouTube Repeat ButtonはVladislav Tupikinによって開発されたChromeの拡張機能で、その主な機能は「YouTube Repeat Button.」です。
拡張機能のスクリーンショット
YouTube Repeat Button拡張機能のCRXファイルをダウンロード
YouTube Repeat Button拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Google Chrome extension that embeds a video repeat button directly into the YouTube player
拡張機能の基本情報
名前 | YouTube Repeat Button |
ID | mpaeilkfigmkompknfmmnojgkbkahfdk |
公式URL | https://chromewebstore.google.com/detail/youtube-repeat-button/mpaeilkfigmkompknfmmnojgkbkahfdk |
説明 | YouTube Repeat Button. |
ファイルサイズ | 15.33 KB |
インストール数 | 394 |
現在のバージョン | 1.0.0 |
最終更新日 | 2021-01-05 |
公開日 | 2019-12-20 |
評価 | 3.00/5 合計 4 レビュー |
開発者 | Vladislav Tupikin |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://github.com/MrRefactoring/youtube-repeat |
対応言語 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "1.0.0", "default_locale": "en", "icons": { "16": "src\/images\/icons\/icon16.png", "48": "src\/images\/icons\/icon48.png", "128": "src\/images\/icons\/icon128.png" }, "content_scripts": [ { "run_at": "document_end", "css": [ "src\/styles.css" ], "js": [ "src\/helpers\/onElementHeightChange.js", "src\/helpers\/onRepeatClick.js", "src\/helpers\/removeTitle.js", "src\/helpers\/resetTitle.js", "src\/helpers\/createButton.js", "src\/helpers\/patcher.js", "src\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "scripts": [ "src\/background.js" ] }, "permissions": [ "tabs" ] } |