Ad Accelerator
Detects if a video ad is playing, mutes the video and dramatically increases speed.
Ad Acceleratorとは何ですか?
Ad Acceleratorはrkarpinskiによって開発されたChromeの拡張機能で、その主な機能は「Detects if a video ad is playing, mutes the video and dramatically increases speed.」です。
拡張機能のスクリーンショット
Ad Accelerator拡張機能のCRXファイルをダウンロード
Ad Accelerator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Skip through annoying advertisements instantly on sites like Youtube & Hulu. * Automatically utilize skip ad button * Automatically mute ads * Automatically increases ad speed to the maximum allowed speed Skip through ads with Ad Accelerator and spend more time watching videos. Completely free and open sourced on github!! Support us by leaving a review or by contributing a pull request.
拡張機能の基本情報
名前 | Ad Accelerator |
ID | gpboiedfklodfhngobidfjecdpmccehg |
公式URL | https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg |
説明 | Detects if a video ad is playing, mutes the video and dramatically increases speed. |
ファイルサイズ | 472 KB |
インストール数 | 10,000 |
現在のバージョン | 0.0.0.4 |
最終更新日 | 2024-03-06 |
公開日 | 2023-11-15 |
評価 | 4.46/5 合計 69 レビュー |
開発者 | rkarpinski |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://github.com/rkk3/ad-accelerator |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ad Accelerator", "version": "0.0.0.4", "description": "Detects if a video ad is playing, mutes the video and dramatically increases speed.", "permissions": [ "webNavigation", "scripting" ], "host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/www.hulu.com\/watch\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/www.hulu.com\/watch\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "icons": { "16": "assets\/images\/icon16.png", "32": "assets\/images\/icon32.png", "48": "assets\/images\/icon48.png", "128": "assets\/images\/icon128.png" } } |