Anime Skip Player

Custom video player for anime streaming websites. Skip intros, outros, and more.

Anime Skip Player란 무엇입니까?

Anime Skip Player은(는) https://anime-skip.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Custom video player for anime streaming websites. Skip intros, outros, and more."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Anime Skip Player 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Watch anime faster than ever! The Anime Skip Player lets you automatically skip intros, outros, or anything else that you don't want to watch.

Anime Skip replaces the video player of streaming services with it's own, standardizing the viewing experience.


✨ Features

      • Customize what you want to watch and skip the rest
      • Change the playback speed
      • Customize your keyboard shortcuts
      • Multiple color themes
      • Screenshots
      • Contribute timestamps and episode info for the community


🌐 Streaming Services

      • Crunchyroll
      • Aniwave
      • Aniwatch

With more coming soon!


☔ Safe

The extension is open sourced!

      https://github.com/anime-skip/web-extension


💕 Enjoying Anime Skip?

Leave a 5 star review! Reviews help build trust and attract new users, which means more timestamps!                    

확장 프로그램 기본 정보

이름 Anime Skip Player Anime Skip Player
ID mgmdkjcljneegjfajchedjpdhbadklcf
공식 URL https://chromewebstore.google.com/detail/anime-skip-player/mgmdkjcljneegjfajchedjpdhbadklcf
설명 Custom video player for anime streaming websites. Skip intros, outros, and more.
파일 크기 985 KB
설치 횟수 1,230
현재 버전 2.0.3
최근 업데이트 2024-01-28
출시 날짜 2020-10-26
평점 4.54/5 총 41 개의 평점
개발자 https://anime-skip.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.anime-skip.com/get-started
도움말 페이지 URL https://www.anime-skip.com/support
개인정보 보호 정책 페이지 URL https://anime-skip.com/docs/policies/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Anime Skip Player",
    "description": "Custom video player for anime streaming websites. Skip intros, outros, and more.",
    "version": "2.0.3",
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.anime-skip.com\/*"
            ],
            "js": [
                "content-scripts\/anime-skip.js"
            ]
        },
        {
            "matches": [
                "*:\/\/aniwatch.to\/watch\/*"
            ],
            "all_frames": false,
            "js": [
                "content-scripts\/aniwatch-helper.js"
            ]
        },
        {
            "matches": [
                "*:\/\/megacloud.tv\/e\/embed-*",
                "*:\/\/watchsb.com\/e\/*"
            ],
            "all_frames": true,
            "css": [
                "content-scripts\/aniwatch-player.css"
            ],
            "js": [
                "content-scripts\/aniwatch-player.js"
            ]
        },
        {
            "matches": [
                "*:\/\/aniwave.to\/watch\/*"
            ],
            "all_frames": false,
            "js": [
                "content-scripts\/aniwave-helper.js"
            ]
        },
        {
            "matches": [
                "*:\/\/mcloud.bz\/e\/*",
                "*:\/\/vidplay.online\/e\/*",
                "*:\/\/www.mp4upload.com\/embed-*"
            ],
            "all_frames": true,
            "css": [
                "content-scripts\/aniwave-player.css"
            ],
            "js": [
                "content-scripts\/aniwave-player.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.crunchyroll.com\/*"
            ],
            "all_frames": false,
            "js": [
                "content-scripts\/crunchyroll-helper.js"
            ]
        },
        {
            "matches": [
                "*:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html"
            ],
            "all_frames": true,
            "css": [
                "content-scripts\/crunchyroll-player.css"
            ],
            "js": [
                "content-scripts\/crunchyroll-player.js"
            ]
        },
        {
            "matches": [
                "*:\/\/mcloud.bz\/e\/*",
                "*:\/\/megacloud.tv\/e\/embed-*",
                "*:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html",
                "*:\/\/vidplay.online\/e\/*",
                "*:\/\/watchsb.com\/e\/*",
                "*:\/\/www.mp4upload.com\/embed-*"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "content-scripts\/keydown-blocker.js"
            ]
        }
    ]
}