SkIntro

This extension auto skips intro for streaming services.

SkIntro란 무엇입니까?

SkIntro은(는) Rehan Ahmed에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension auto skips intro for streaming services."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

SkIntro 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 SkIntro SkIntro
ID acjikceibgbijbnhfialnjhilckdajan
공식 URL https://chromewebstore.google.com/detail/skintro/acjikceibgbijbnhfialnjhilckdajan
설명 This extension auto skips intro for streaming services.
파일 크기 168 KB
설치 횟수 465
현재 버전 1.1
최근 업데이트 2021-09-15
출시 날짜 2021-07-21
평점 4.20/5 총 5 개의 평점
개발자 Rehan Ahmed
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/reallyrehan/skintro
도움말 페이지 URL https://github.com/reallyrehan/skintro
지원되는 언어 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"
        }
    ]
}