Crunchyroll Intro Skipper

Allows intros to be skipped through a skip button on Crunchyroll

Vad är Crunchyroll Intro Skipper?

Crunchyroll Intro Skipper är en Chrome-tillägg utvecklad av Ian Hsiao, och dess huvudfunktion är "Allows intros to be skipped through a skip button on Crunchyroll".

Tilläggsskärmbilder

screenshot

Ladda ner Crunchyroll Intro Skipper-förlängningens CRX-fil

Ladda ner Crunchyroll Intro Skipper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Crunchyroll Intro Skipper Crunchyroll Intro Skipper
ID hbglapgegjickodindimfgfmjmhhdlii
Officiell webbadress https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii
Beskrivning Allows intros to be skipped through a skip button on Crunchyroll
Filstorlek 29.51 KB
Antal Installationer 1,091
Aktuell Version 1.0
Senast Uppdaterad 2020-08-05
Publiceringsdatum 2020-06-17
Betyg 2.81/5 Totalt 16 Betyg
Utvecklare Ian Hsiao
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/ianjjhsiao/skipintro
Stödda Språk 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"
}