FA Ad Banner Nuker

Removes the third-party banner ads on Furaffinity

Was ist FA Ad Banner Nuker?

FA Ad Banner Nuker ist eine Chrome-Erweiterung, die von Todd Slater entwickelt wurde, und ihr Hauptmerkmal ist "Removes the third-party banner ads on Furaffinity".

Erweiterungsscreenshots

screenshot

FA Ad Banner Nuker-Erweiterungs-CRX-Datei herunterladen

Laden Sie FA Ad Banner Nuker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name FA Ad Banner Nuker FA Ad Banner Nuker
ID bnkpjmdnjimfchafejmjbpnhjlojlpph
Offizielle URL https://chromewebstore.google.com/detail/fa-ad-banner-nuker/bnkpjmdnjimfchafejmjbpnhjlojlpph
Beschreibung Removes the third-party banner ads on Furaffinity
Dateigröße 20.6 KB
Installationsanzahl 49
Aktuelle Version 1.0.13
Letztes Update 2023-03-19
Veröffentlichungsdatum 2016-01-09
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Todd Slater
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
        }
    ]
}