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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Netflix.SWT และคุณลักษณะหลักของมันคือ "This Extension auto click on intro and next episode buttons on netflix."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Stop Wasting my Time

ดาวน์โหลดไฟล์ส่วนขยาย Netflix Stop Wasting my Time ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}