Rewind

Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.

What is Rewind?

Rewind is a Chrome extension developed by Anthony Zheng, and its main feature is "Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.".

Extension Screenshots

screenshot
screenshot

Download Rewind Extension CRX File

Download Rewind extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Rewind Rewind
ID needhfaeneknjcmhkkknfcnpjmifhjjj
Official URL https://chromewebstore.google.com/detail/rewind/needhfaeneknjcmhkkknfcnpjmifhjjj
Description Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.
File Size 222 KB
Installation Count 31
Current Version 1.0.1
Last Updated 2020-05-14
Publish Date 2020-05-14
Rating 5.00/5 Total 1 Ratings
Developer Anthony Zheng
Payment Type free
Supported Languages 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
}