Youtube Autoclose Ads

Automatically close ads on youtube videos after an amount of seconds.

什麼是Youtube Autoclose Ads?

Youtube Autoclose Ads是由Gabriel Duarte開發的Chrome擴展程式,該擴展的主要功能是“Automatically close ads on youtube videos after an amount of seconds.”。

擴展截圖

screenshot

下載Youtube Autoclose Ads擴展crx文件

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

擴展使用說明

                        Automatically close ads on youtube videos after an amount of seconds (default to 5 seconds). You can change the seconds on the settings page of the extension (chrome://extensions)

But why not just use a normal ad-block?

An ad-block completly removes all sorts of ads on youtube, making the video creator not get any money with monetization. This extension allow you to set a minimum time in which the ad will be displayed, and after that time, the ad will be closed automatically, allowing the content creator to get monetization on the video.                    

擴展基本資訊

名稱 Youtube Autoclose Ads Youtube Autoclose Ads
ID mppjhhbajcciljocgbadbhbgphjfdmhj
官方網址 https://chromewebstore.google.com/detail/youtube-autoclose-ads/mppjhhbajcciljocgbadbhbgphjfdmhj
簡介 Automatically close ads on youtube videos after an amount of seconds.
檔案大小 722 KB
安裝次數 2,427
目前版本 1.2.3
更新時間 2022-07-12
上架時間 2019-02-10
評分 4.46/5 共 13 次評分
開發者 Gabriel Duarte
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/GabrielDuarteM/youtube-autoclose-ads
說明頁面URL https://github.com/GabrielDuarteM/youtube-autoclose-ads/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Autoclose Ads",
    "version": "1.2.3",
    "description": "Automatically close ads on youtube videos after an amount of seconds.",
    "author": "Gabriel Duarte",
    "homepage_url": "https:\/\/github.com\/GabrielDuarteM\/youtube-autoclose-ads",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "youtube-autoclose-ads.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "options_ui": {
        "page": "options.html"
    }
}