SkipAds

This clicks SkipAds button, removes Ad-banners for you

SkipAdsとは何ですか?

SkipAdsはEdwinによって開発されたChromeの拡張機能で、その主な機能は「This clicks SkipAds button, removes Ad-banners for you」です。

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

screenshot

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

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

拡張機能の使用方法

                        This extension automatically clicks Skip Ad button on youtube videos.  It also removes the Ad-banners that appear at the bottom of the video. 

You just have to install this Extension, and watch Youtube without pressing on Skip Ad button. This plugin works exclusively on YouTube videos.                    

拡張機能の基本情報

名前 SkipAds SkipAds
ID gccoifaifhhancbpbngckolbphodjiea
公式URL https://chromewebstore.google.com/detail/skipads/gccoifaifhhancbpbngckolbphodjiea
説明 This clicks SkipAds button, removes Ad-banners for you
ファイルサイズ 9.99 KB
インストール数 159
現在のバージョン 2.0
最終更新日 2022-06-27
公開日 2020-06-19
評価 5.00/5 合計 4 レビュー
開発者 Edwin
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SkipAds",
    "version": "2.0",
    "description": "This clicks SkipAds button, removes Ad-banners for you ",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "persistent": false
    },
    "action": {
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "skipAds.js"
            ]
        }
    ],
    "manifest_version": 3
}