FA Ad Banner Nuker
Removes the third-party banner ads on Furaffinity
FA Ad Banner Nukerとは何ですか?
FA Ad Banner NukerはTodd Slaterによって開発されたChromeの拡張機能で、その主な機能は「Removes the third-party banner ads on Furaffinity」です。
拡張機能のスクリーンショット
FA Ad Banner Nuker拡張機能のCRXファイルをダウンロード
FA Ad Banner Nuker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A tiny Chrome extension that simply removes the (annoying) banner ad on the top of www.furaffinity.net, without affecting any of the internal ads at the bottom of the page. Also includes options to remove the in-house ads at the top and bottom of the page if desired (in addition to the third-party banner ad, which is always removed). Works in both the new and traditional site layouts! :3 ======= UPDATES ======= v1.0.13 - Added the ability to optionally remove the in-house ads at the bottom of the page. - Added the ability to optionally remove the in-house ads at the top right of the page in the legacy layout. - Added an options page to allow configuration and saving of the options above.
拡張機能の基本情報
名前 | FA Ad Banner Nuker |
ID | bnkpjmdnjimfchafejmjbpnhjlojlpph |
公式URL | https://chromewebstore.google.com/detail/fa-ad-banner-nuker/bnkpjmdnjimfchafejmjbpnhjlojlpph |
説明 | Removes the third-party banner ads on Furaffinity |
ファイルサイズ | 20.6 KB |
インストール数 | 49 |
現在のバージョン | 1.0.13 |
最終更新日 | 2023-03-19 |
公開日 | 2016-01-09 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Todd Slater |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FA Ad Banner Nuker", "version": "1.0.13", "manifest_version": 3, "description": "Removes the third-party banner ads on Furaffinity", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "options_ui": { "page": "src\/html\/options.html", "open_in_tab": false }, "permissions": [ "storage" ], "action": { "default_popup": "src\/html\/options.html" }, "content_scripts": [ { "matches": [ "http:\/\/*.furaffinity.net\/*", "https:\/\/*.furaffinity.net\/*" ], "js": [ "src\/js\/main.js" ], "run_at": "document_end", "all_frames": true } ] } |