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
官方網址 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
電子郵箱 [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"
    }
}