Rewind
Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.
Was ist Rewind?
Rewind ist eine Chrome-Erweiterung, die von Anthony Zheng entwickelt wurde, und ihr Hauptmerkmal ist "Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.".
Erweiterungsscreenshots
Rewind-Erweiterungs-CRX-Datei herunterladen
Laden Sie Rewind-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Rewind |
ID | needhfaeneknjcmhkkknfcnpjmifhjjj |
Offizielle URL | https://chromewebstore.google.com/detail/rewind/needhfaeneknjcmhkkknfcnpjmifhjjj |
Beschreibung | Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube. |
Dateigröße | 222 KB |
Installationsanzahl | 31 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2020-05-14 |
Veröffentlichungsdatum | 2020-05-14 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Anthony Zheng |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |