Crunchyroll Intro Skipper

Allows intros to be skipped through a skip button on Crunchyroll

Crunchyroll Intro Skipperคืออะไร?

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

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

screenshot

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

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

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

                        This extension parses through the episode comments to determine if there are any intro timestamps posted. If there are no valid timestamps within the comments, it will fallback to using Crunchyroll's ad locations to determine the best position.

To use this extension, a `SKIP INTRO` button is overlaid onto the Crunchyroll video player which you can click to skip the episode intro. The button also indicates how it got the timestamp (either through someone's comment on the page, or through ad locations).                    

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

ชื่อ Crunchyroll Intro Skipper Crunchyroll Intro Skipper
ID enphflaephhmabkpchhgkhkfcblbhiip
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/enphflaephhmabkpchhgkhkfcblbhiip
คำอธิบาย Allows intros to be skipped through a skip button on Crunchyroll
ขนาดไฟล์ 15.16 KB
จำนวนการติดตั้ง 1,310
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2021-04-06
วันที่เผยแพร่ 2021-03-02
คะแนน 3.57/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา Ramon Quitales
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/rquitales/crunchyroll-intro-skipper
URL หน้าช่วยเหลือ https://github.com/rquitales/crunchyroll-intro-skipper/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "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": "assets\/images\/icon.png",
        "128": "assets\/images\/large_icon.png"
    },
    "background": {
        "scripts": [
            "js\/background_script.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "name": "Crunchyroll Intro Skipper",
    "author": "Ramon Quitales",
    "permissions": [
        "https:\/\/www.crunchyroll.com\/*"
    ],
    "version": "0.2.1"
}