Rewind
Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.
Rewindคืออะไร?
Rewind เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anthony Zheng และคุณลักษณะหลักของมันคือ "Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rewind
ดาวน์โหลดไฟล์ส่วนขยาย 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 } |