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”。

擴展截圖

screenshot

下載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 FA Ad Banner Nuker
ID bnkpjmdnjimfchafejmjbpnhjlojlpph
官方網址 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
電子郵箱 [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
        }
    ]
}