Crunchyroll Intro Skipper

Allows intros to be skipped through a skip button on Crunchyroll

Crunchyroll Intro Skipper क्या है?

Crunchyroll Intro Skipper Ian Hsiao द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows intros to be skipped through a skip button on Crunchyroll"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Crunchyroll Intro Skipper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
}