Netflix Autoskip

auto-clicks skip buttons

Netflix Autoskip क्या है?

Netflix Autoskip ChrisDeadman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "auto-clicks skip buttons"।

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

screenshot

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

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

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

                        removes the hassle of getting up to skip the recap/intro when binging netflix shows.                    

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

नाम Netflix Autoskip Netflix Autoskip
ID ckkclnbnbljdaoclmkmhagidpimedcii
आधिकारिक URL https://chromewebstore.google.com/detail/netflix-autoskip/ckkclnbnbljdaoclmkmhagidpimedcii
विवरण auto-clicks skip buttons
फ़ाइल का आकार 32.48 KB
स्थापना संख्या 130
वर्तमान संस्करण 1.0
अंतिम अपडेट 2019-04-13
प्रकाशन तिथि 2019-04-13
डेवलपर ChrisDeadman
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ChrisDeadman/NetflixAutoskip
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Autoskip",
    "description": "auto-clicks skip buttons",
    "version": "1.0",
    "author": "ChrisDeadman",
    "manifest_version": 2,
    "content_scripts": [
        {
            "js": [
                "autoskip.js"
            ],
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    }
}