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.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου 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 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
}