Autoskip Youtube Ads

Allows you to autoskip any youtube ad once it is possible

什麼是Autoskip Youtube Ads?

Autoskip Youtube Ads是由jonkotzonev開發的Chrome擴展程式,該擴展的主要功能是“Allows you to autoskip any youtube ad once it is possible”。

擴展截圖

screenshot
screenshot

下載Autoskip Youtube Ads擴展crx文件

下載Autoskip Youtube Ads擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension will auto skip all the in-video ads that show up in youtube. This is not an AdBlocker it is an Ad Skipper and works only for Youtube videos, allowing you to watch without the need of constantly hitting "Skip ad". To turn it on, you have to install it and enable it. The default action is skip. To stop it - hit the Button that shows the current status and switch it to off. When the status shows in green with the 'ON' label you skipper is working and you can go to every youtube page without worrying for skipping ads. If you want to switch it off, just click again on the status button and it will tun to red with the label 'OFF', you can refresh page and ads will not be Auto-skipped anymore.                    

擴展基本資訊

名稱 Autoskip Youtube Ads Autoskip Youtube Ads
ID fdhnlmakcifkamoadlpgiemgekddkfjb
官方網址 https://chromewebstore.google.com/detail/autoskip-youtube-ads/fdhnlmakcifkamoadlpgiemgekddkfjb
簡介 Allows you to autoskip any youtube ad once it is possible
檔案大小 11.05 KB
安裝次數 56
目前版本 3.0
更新時間 2023-11-21
上架時間 2022-07-07
開發者 jonkotzonev
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Autoskip Youtube Ads",
    "description": "Allows you to autoskip any youtube ad once it is possible",
    "icons": {
        "16": "icons8-check-all-stickers-16.png",
        "32": "icons8-check-all-stickers-32.png",
        "128": "icons8-check-all-128.png"
    },
    "version": "3.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_title": "Auto Skip Youtube Ads",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch?*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}