Ad Blocking Power

Show an Old Spice ad instead of a normal ad.

Co je Ad Blocking Power?

Ad Blocking Power je rozšíření Chrome vyvinuté Chapter 7 Certified, a jeho hlavní funkcí je „Show an Old Spice ad instead of a normal ad.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Ad Blocking Power

Stáhněte si soubory rozšíření Ad Blocking Power ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Ad Blocking Power Ad Blocking Power
ID najdbfgcbeanghldlcndgjhiemobnmof
Oficiální URL https://chromewebstore.google.com/detail/ad-blocking-power/najdbfgcbeanghldlcndgjhiemobnmof
Popis Show an Old Spice ad instead of a normal ad.
Velikost souboru 105 KB
Počet instalací 472
Aktuální Verze 0.1
Poslední Aktualizace 2016-01-11
Datum Vydání 2016-01-11
Hodnocení 4.10/5 Celkem 10 Hodnocení
Vývojář Chapter 7 Certified
Typ Platby free
Webové stránky Rozšíření http://www.chapter7certified.tk
Podporované Jazyky 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"
            ]
        }
    ]
}