Crunchyroll Intro Skipper

Allows intros to be skipped through a skip button on Crunchyroll

Crunchyroll Intro Skipperคืออะไร?

Crunchyroll Intro Skipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ian Hsiao และคุณลักษณะหลักของมันคือ "Allows intros to be skipped through a skip button on Crunchyroll"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Crunchyroll Intro Skipper

ดาวน์โหลดไฟล์ส่วนขยาย Crunchyroll Intro Skipper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Skips anime intros with a single button.
Finds when the intro ends by skipping to the timestamp of the first advertisement.
*Update* it seems like crunchyroll has changed the location of their advertisements from right after the intro to somewhere in the middle so it's likely the extension will skip to somewhere random.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Crunchyroll Intro Skipper Crunchyroll Intro Skipper
ID hbglapgegjickodindimfgfmjmhhdlii
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii
คำอธิบาย Allows intros to be skipped through a skip button on Crunchyroll
ขนาดไฟล์ 29.51 KB
จำนวนการติดตั้ง 1,091
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-08-05
วันที่เผยแพร่ 2020-06-17
คะแนน 2.81/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา Ian Hsiao
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/ianjjhsiao/skipintro
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "matches": [
                "https:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html*"
            ]
        }
    ],
    "description": "Allows intros to be skipped through a skip button on Crunchyroll",
    "icons": {
        "16": "icon.png",
        "128": "Big_icon.png"
    },
    "background": {
        "scripts": [
            "background_script.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "name": "Crunchyroll Intro Skipper",
    "permissions": [
        "https:\/\/www.crunchyroll.com\/*"
    ],
    "version": "1.0"
}