Youtube Short Controller

Youtube Shorts Controller

Youtube Short Controller क्या है?

Youtube Short Controller https://misa198.vercel.app द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Youtube Shorts Controller"।

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

screenshot

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

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

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

                        The extension will add to the Youtube Short player an overlay with video control functions including stop playing, fast forward or rewind the video for a period of time that can be set in the settings popup.                    

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

नाम Youtube Short Controller Youtube Short Controller
ID fbkgbegeloakaicldjgkamfmpjhlmibi
आधिकारिक URL https://chrome.google.com/webstore/detail/youtube-short-controller/fbkgbegeloakaicldjgkamfmpjhlmibi
विवरण Youtube Shorts Controller
फ़ाइल का आकार 24.95 KB
स्थापना संख्या 3,214
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2022-10-15
प्रकाशन तिथि 2022-04-28
रेटिंग 3.94/5 कुल 16 रेटिंग्स
डेवलपर https://misa198.vercel.app
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/misa198/youtube-shorts-controller
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Youtube Shorts Controller",
    "version": "1.0.5",
    "author": "Thanh Vu",
    "homepage_url": "https:\/\/github.com\/thanhvu1982\/youtube-shorts-controller",
    "manifest_version": 3,
    "name": "Youtube Short Controller",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": "icons\/icon64.png",
        "default_popup": "popup.html"
    }
}