Rewind

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

Rewind क्या है?

Rewind Anthony Zheng द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Loop segments, mirror videos, hide comments, and toggle recommended videos on YouTube."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Rewind एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}