Crunchyroll Intro Skipper

Allows intros to be skipped through a skip button on Crunchyroll

Crunchyroll Intro Skipper क्या है?

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

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

screenshot

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

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

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

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