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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This Extension auto click on intro and next episode buttons on netflix."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Netflix Stop Wasting my Time 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}