AdSkipper
This extension will skip youtube ads.
AdSkipperとは何ですか?
AdSkipperはAbhishek Mehariaによって開発されたChromeの拡張機能で、その主な機能は「This extension will skip youtube ads.」です。
拡張機能のスクリーンショット
AdSkipper拡張機能のCRXファイルをダウンロード
AdSkipper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
AdSkipper for Youtube™ is a content filtering and ad blocking browser extension which blocks ads on Youtube™. Automatically clicks 'Skip Ad' buttons for you. It doesn't block ads, it just clicks close button and skip ad for you automatically. Useful if you are listening to music in office areas or if you are bit lazy to press that button.
拡張機能の基本情報
名前 | AdSkipper |
ID | paeoelngbckenlidinleldbemhkdiphi |
公式URL | https://chromewebstore.google.com/detail/adskipper/paeoelngbckenlidinleldbemhkdiphi |
説明 | This extension will skip youtube ads. |
ファイルサイズ | 59.06 KB |
インストール数 | 2,555 |
現在のバージョン | 0.7 |
最終更新日 | 2021-06-27 |
公開日 | 2019-08-14 |
評価 | 4.50/5 合計 8 レビュー |
開発者 | Abhishek Meharia |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://abhim.in |
ヘルプページのURL | https://abhim.in |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AdSkipper", "description": "This extension will skip youtube ads.", "version": "0.7", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "page": "background.html", "persistent": true }, "commands": { "toggle-feature-foo": { "suggested_key": { "default": "Ctrl+Shift+K", "mac": "MacCtrl+Shift+K" }, "description": "Switches between play and pause state.", "name": "Play pause shortcut command", "global": true } }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery.js", "skip.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'" } |