CatBlock

Replace ads with cats.

Hvad er CatBlock?

CatBlock er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Replace ads with cats.".

Udvidelsesskærmbilleder

screenshot

Download CatBlock-udvidelses-CRX-fil

Download CatBlock-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This extension will replace ads with GIFs of cats. It is similar to adblock but with cats placed into the empty space.                    

Grundlæggende oplysninger om udvidelsen

Navn CatBlock CatBlock
ID malnloekiojbhmllnpcnfbhmhcmnkcbj
Officiel URL https://chromewebstore.google.com/detail/catblock/malnloekiojbhmllnpcnfbhmhcmnkcbj
Beskrivelse Replace ads with cats.
Filstørrelse 65.92 KB
Antal Installationer 555
Nuværende Version 1.1
Senest Opdateret 2014-10-20
Udgivelsesdato 2014-10-19
Bedømmelse 3.23/5 Samlet 47 Bedømmelser
Udvikler Unknown
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CatBlock",
    "description": "Replace ads with cats.",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "CatBlock.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/thecatapi.com\/"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon48.png",
        "default_popup": "popup.html"
    }
}