Rewind

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

Co to jest Rewind?

Rewind to rozszerzenie Chrome opracowane przez Anthony Zheng, a jego główną funkcją jest „Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Rewind

Pobierz pliki rozszerzeń Rewind w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Rewind Rewind
ID needhfaeneknjcmhkkknfcnpjmifhjjj
Oficjalny URL https://chromewebstore.google.com/detail/rewind/needhfaeneknjcmhkkknfcnpjmifhjjj
Opis Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube.
Rozmiar pliku 222 KB
Liczba instalacji 31
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2020-05-14
Data Publikacji 2020-05-14
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Anthony Zheng
Typ Płatności free
Obsługiwane Języki 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
}