YouTube Skip Chapter

Automatically skip chapters of YouTube videos you don't want to watch.

YouTube Skip Chapter क्या है?

YouTube Skip Chapter skeetsdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically skip chapters of YouTube videos you don't want to watch."।

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

screenshot

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

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

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

                        Have you ever had a YouTube "mix" video that you really enjoy, except for just 2 or 3 songs in the middle?

This extension allows you to skip just what you want to automatically by defining "skip words". If these words are found in a YouTube video's chapter title, that chapter will be skipped automatically.

GitHub: https://github.com/skeets23/YouTube-Skip-Chapter-Chrome-Ext                    

एक्सटेंशन की मूल जानकारी

नाम YouTube Skip Chapter YouTube Skip Chapter
ID cjpkoghfjpkoapnmkppphegcmchghjdn
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-skip-chapter/cjpkoghfjpkoapnmkppphegcmchghjdn
विवरण Automatically skip chapters of YouTube videos you don't want to watch.
फ़ाइल का आकार 103 KB
स्थापना संख्या 26
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-02-24
प्रकाशन तिथि 2020-11-30
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर skeetsdev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Skip Chapter",
    "description": "Automatically skip chapters of YouTube videos you don't want to watch.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "youtube_skip_chapter.png",
        "default_title": "Click here to edit skip words",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "*:\/\/*.youtube.com\/watch*",
        "storage"
    ]
}