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.」です。
拡張機能のスクリーンショット
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 |
ID | mppjhhbajcciljocgbadbhbgphjfdmhj |
公式URL | 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 |
Eメール | [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" } } |