Netflix Stop Wasting my Time

This Extension auto click on intro and next episode buttons on netflix.

Netflix Stop Wasting my Time क्या है?

Netflix Stop Wasting my Time Netflix.SWT द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This Extension auto click on intro and next episode buttons on netflix."।

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

screenshot
screenshot
screenshot

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

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

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

                        Netflix Stop Wasting my time automatically click on skip intro and next episode button (working in 2022).

Automatic click on "Play button" button if the video is paused after skip intro !

Install instruction : Refresh Netflix page after installation !

--Version 1.2 July 2022--

Feature:
- Working js skip for 2022 Netflix website
- Popup menu add to disable "Skip Intro" or "Next Episode"
- Removed former options menu


--Version 1.1 December 2018--

Feature :
-Option to disable automatic "Skip Intro"
-Option to disable automatic click on "Next Episode" button

--Version 1.0 December 2018 -- 

Feature :
-Automatic click on "Skip Intro" button
-Automatic click on "Next Episode" button
-Automatic click on "Play button" button if the video is paused after skip intro

Source code on GitHub : https://github.com/nathtest/Netflix_SWT                    

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

नाम Netflix Stop Wasting my Time Netflix Stop Wasting my Time
ID epaccbhgkffaibcbodpbhlponnffgljh
आधिकारिक URL https://chromewebstore.google.com/detail/netflix-stop-wasting-my-t/epaccbhgkffaibcbodpbhlponnffgljh
विवरण This Extension auto click on intro and next episode buttons on netflix.
फ़ाइल का आकार 46.81 KB
स्थापना संख्या 755
वर्तमान संस्करण 1.2
अंतिम अपडेट 2022-07-28
प्रकाशन तिथि 2018-12-10
रेटिंग 3.40/5 कुल 5 रेटिंग्स
डेवलपर Netflix.SWT
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/nathtest/Netflix_SWT
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Stop Wasting my Time",
    "short_name": "Netfix SWT",
    "version": "1.2",
    "description": "This Extension auto click on intro and next episode buttons on netflix.",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "action": {
        "default_title": "Netfix SWT",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/free-red-n-clipart-library_16.png",
        "32": "images\/free-red-n-clipart-library_32.png",
        "48": "images\/free-red-n-clipart-library_48.png",
        "128": "images\/free-red-n-clipart-library_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/watch\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "fonts\/BebasNeue-Regular.ttf",
                "images\/free-red-n-clipart-library_16.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "manifest_version": 3
}