Ad Blocking Power

Show an Old Spice ad instead of a normal ad.

Was ist Ad Blocking Power?

Ad Blocking Power ist eine Chrome-Erweiterung, die von Chapter 7 Certified entwickelt wurde, und ihr Hauptmerkmal ist "Show an Old Spice ad instead of a normal ad.".

Erweiterungsscreenshots

screenshot

Ad Blocking Power-Erweiterungs-CRX-Datei herunterladen

Laden Sie Ad Blocking Power-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

                        This extension replaces image ads on the web with Terry Crews and Old Spice images.

Not affiliated with Terry Crews or Old Spice.

Based off of the Doge Ad Blocker: https://github.com/grevory/doge-ad-blocker-chrome-extension                    

Grundlegende Informationen zur Erweiterung

Name Ad Blocking Power Ad Blocking Power
ID najdbfgcbeanghldlcndgjhiemobnmof
Offizielle URL https://chromewebstore.google.com/detail/ad-blocking-power/najdbfgcbeanghldlcndgjhiemobnmof
Beschreibung Show an Old Spice ad instead of a normal ad.
Dateigröße 105 KB
Installationsanzahl 472
Aktuelle Version 0.1
Letztes Update 2016-01-11
Veröffentlichungsdatum 2016-01-11
Bewertung 4.10/5 Insgesamt 10 Bewertungen
Entwickler Chapter 7 Certified
Zahlungsart free
Erweiterungswebsite http://www.chapter7certified.tk
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ad Blocking Power",
    "description": "Show an Old Spice ad instead of a normal ad.",
    "author": "Liam Mills",
    "version": "0.1",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icons\/power-ad-blocker-16.png",
        "48": "icons\/power-ad-blocker-48.png",
        "128": "icons\/power-ad-blocker-128.png"
    },
    "browser_action": {
        "default_icon": "icons\/power-ad-blocker-19.png",
        "default_title": "Power Ad Blocker Settings",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "power-ad-replacer.js"
            ]
        }
    ]
}