Rewind
Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.
Rewindとは何ですか?
RewindはAnthony Zhengによって開発されたChromeの拡張機能で、その主な機能は「Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.」です。
拡張機能のスクリーンショット
Rewind拡張機能のCRXファイルをダウンロード
Rewind拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
An extension designed to make you want to "Rewind" that video! Features to customize your YouTube™ browsing experience including: ✔ Mirroring the video player ✔ Hiding the comments section ✔ Hiding the related videos section ✔ Looping through segments of the video SVG Icon used for the logo is free for commercial use. Provided by: https://www.iconfinder.com/Octopaper YouTube is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
拡張機能の基本情報
名前 | Rewind |
ID | needhfaeneknjcmhkkknfcnpjmifhjjj |
公式URL | https://chromewebstore.google.com/detail/rewind/needhfaeneknjcmhkkknfcnpjmifhjjj |
説明 | Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube. |
ファイルサイズ | 222 KB |
インストール数 | 31 |
現在のバージョン | 1.0.1 |
最終更新日 | 2020-05-14 |
公開日 | 2020-05-14 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Anthony Zheng |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Rewind", "version": "1.0.1", "description": "Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |