SkIntro

This extension auto skips intro for streaming services.

SkIntro là gì?

SkIntro là một tiện ích mở rộng Chrome được phát triển bởi Rehan Ahmed, và tính năng chính của nó là "This extension auto skips intro for streaming services.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng SkIntro 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

                        Do you always press that "Skip Intro" button when watching a show online? What if there was an app that did that for you?

SkIntro was born out of that idea and it supports auto-skipping intros on multiple streaming services,
- Netflix
- Disney+
- Peacock
- Amazon PrimeVideo

Support for more services is coming soon.

It also works as an ad-blocker by auto-skipping ads on YouTube by pressing the "Skip Ad" button as soon as it appears.                    

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

Tên SkIntro SkIntro
ID acjikceibgbijbnhfialnjhilckdajan
URL Chính Thức https://chromewebstore.google.com/detail/skintro/acjikceibgbijbnhfialnjhilckdajan
Mô tả This extension auto skips intro for streaming services.
Kích Thước Tệp 168 KB
Số Lần Cài Đặt 465
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2021-09-15
Ngày Phát Hành 2021-07-21
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Rehan Ahmed
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/reallyrehan/skintro
URL Trang Trợ Giúp https://github.com/reallyrehan/skintro
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SkIntro",
    "description": "This extension auto skips intro for streaming services.",
    "version": "1.1",
    "icons": {
        "128": "icon.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netflix.com\/*",
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.peacocktv.com\/*",
                "https:\/\/*.disneyplus.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "utilities.js"
            ],
            "run_at": "document_end"
        }
    ]
}