YouTube Intro Skipper

A Chrome extension for starting YouTube videos at predefined start time

Vad är YouTube Intro Skipper?

YouTube Intro Skipper är en Chrome-tillägg utvecklad av hcwtam, och dess huvudfunktion är "A Chrome extension for starting YouTube videos at predefined start time".

Tilläggsskärmbilder

screenshot

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

Ladda ner YouTube 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

                        AdBlock is, without a doubt, one of the best things that have happened to mankind. What if you also want to skip the usual intro/ads in the beginning videos of your favourite channels? Yes, you can fast forward manually, but it can get tedious.

We proudly present, Youtube Skipper. Configure target channels, set start time, forget about it. Don't give me excuses, GIVE ME RESULTS!                    

Grundläggande Information om Tillägg

Namn YouTube Intro Skipper YouTube Intro Skipper
ID bkidjicmopimhpebecifcejncihnfgjj
Officiell webbadress https://chromewebstore.google.com/detail/youtube-intro-skipper/bkidjicmopimhpebecifcejncihnfgjj
Beskrivning A Chrome extension for starting YouTube videos at predefined start time
Filstorlek 18.59 KB
Antal Installationer 196
Aktuell Version 0.1.0
Senast Uppdaterad 2022-11-13
Publiceringsdatum 2022-11-13
Betyg 3.86/5 Totalt 7 Betyg
Utvecklare hcwtam
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Intro Skipper",
    "description": "A Chrome extension for starting YouTube videos at predefined start time",
    "version": "0.1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/logo16.png",
            "32": "\/images\/logo32.png",
            "48": "\/images\/logo48.png",
            "128": "\/images\/logo128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/logo16.png",
        "32": "\/images\/logo32.png",
        "48": "\/images\/logo48.png",
        "128": "\/images\/logo128.png"
    }
}