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 |
官方網址 | 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 } |