YouTube Intro Skipper

A Chrome extension for starting YouTube videos at predefined start time

YouTube Intro Skipperとは何ですか?

YouTube Intro Skipperはhcwtamによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension for starting YouTube videos at predefined start time」です。

拡張機能のスクリーンショット

screenshot

YouTube Intro Skipper拡張機能のCRXファイルをダウンロード

YouTube Intro Skipper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 YouTube Intro Skipper YouTube Intro Skipper
ID bkidjicmopimhpebecifcejncihnfgjj
公式URL https://chromewebstore.google.com/detail/youtube-intro-skipper/bkidjicmopimhpebecifcejncihnfgjj
説明 A Chrome extension for starting YouTube videos at predefined start time
ファイルサイズ 18.59 KB
インストール数 196
現在のバージョン 0.1.0
最終更新日 2022-11-13
公開日 2022-11-13
評価 3.86/5 合計 7 レビュー
開発者 hcwtam
Eメール [email protected]
支払い方法 free
対応言語 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"
    }
}