Crunchyroll One Piece Title Card Skipper

Skip to title card and improve the One Piece experience.

Crunchyroll One Piece Title Card Skipper란 무엇입니까?

Crunchyroll One Piece Title Card Skipper은(는) rdongre에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Skip to title card and improve the One Piece experience."입니다.

확장 프로그램 스크린샷

screenshot

Crunchyroll One Piece Title Card Skipper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to: 
- Skip to the title card of One Piece in Crunchyroll based on user comments 
- Increase playback speed up to 2x on all of Crunchyroll
- Decrease playback speed on all of Crunchyroll                    

확장 프로그램 기본 정보

이름 Crunchyroll One Piece Title Card Skipper Crunchyroll One Piece Title Card Skipper
ID nnndgckkckldmgmjhdeinogflbneicic
공식 URL https://chromewebstore.google.com/detail/crunchyroll-one-piece-tit/nnndgckkckldmgmjhdeinogflbneicic
설명 Skip to title card and improve the One Piece experience.
파일 크기 21.45 KB
설치 횟수 174
현재 버전 1.0.0
최근 업데이트 2021-02-01
출시 날짜 2021-01-31
평점 2.00/5 총 4 개의 평점
개발자 rdongre
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Crunchyroll One Piece Title Card Skipper",
    "version": "1.0.0",
    "description": "Skip to title card and improve the One Piece experience.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "icon.png"
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.crunchyroll.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "playback.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "manifest_version": 2
}