Rewind
Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.
Qu'est-ce que Rewind ?
Rewind est une extension Chrome développée par Anthony Zheng, et sa fonction principale est "Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Rewind
Téléchargez les fichiers d'extension Rewind au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Rewind |
ID | needhfaeneknjcmhkkknfcnpjmifhjjj |
URL Officiel | https://chromewebstore.google.com/detail/rewind/needhfaeneknjcmhkkknfcnpjmifhjjj |
Description | Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube. |
Taille du Fichier | 222 KB |
Nombre d'Installations | 31 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2020-05-14 |
Date de Publication | 2020-05-14 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Anthony Zheng |
Type de Paiement | free |
Langues Prises en Charge | 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 } |