Autoskip Netflix Intro

Skip the intro's on netflix

Autoskip Netflix Intro là gì?

Autoskip Netflix Intro là một tiện ích mở rộng Chrome được phát triển bởi Lukas Demeyere, và tính năng chính của nó là "Skip the intro's on netflix".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Autoskip Netflix Intro

Tải xuống các tệp mở rộng Autoskip Netflix Intro dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Binging your favourite show and getting tired of clicking the button to skip the intro of your Netflix episode? This extension does this automatically for you. You can easy enable/disable this feature.

Skip to Next Episode

 --- You need to refresh your Netflix tab so the extension is loaded and can skip the intro automatically. ---                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Autoskip Netflix Intro Autoskip Netflix Intro
ID olljgnejdhpmoolooihgcdoannkfodji
URL Chính Thức https://chromewebstore.google.com/detail/autoskip-netflix-intro/olljgnejdhpmoolooihgcdoannkfodji
Mô tả Skip the intro's on netflix
Kích Thước Tệp 463 KB
Số Lần Cài Đặt 158
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2023-04-13
Ngày Phát Hành 2020-06-10
Đánh Giá 2.78/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Lukas Demeyere
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Autoskip Netflix Intro",
    "version": "0.0.5",
    "manifest_version": 3,
    "description": "Skip the intro's on netflix",
    "icons": {
        "16": "icons\/netskips16.png",
        "48": "icons\/netskips48.png",
        "128": "icons\/netskips128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Start skipping"
    },
    "permissions": [
        "storage"
    ]
}