Kitten Blocker

This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere!

Qu'est-ce que Kitten Blocker ?

Kitten Blocker est une extension Chrome développée par mattogodoy, et sa fonction principale est "This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Kitten Blocker

Téléchargez les fichiers d'extension Kitten Blocker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Tired of seeing cat pictures all around the internet?
Fear no more! Here comes the solution.

New in version 0.3:
==============
- Updated web URL

New in version 0.2:
==============
- Switch to enable / disable extension.
- Counter badge for replaced kitties.
- Runs in background. Now you don't have to click the icon to hide the cats.
- Detects changes in the page and blocks any new kitties.
- Keeps the original picture size.                    

Informations de Base sur l'Extension

Nom Kitten Blocker Kitten Blocker
ID bhlfekkbgcbmlnfclgklmbdmodbhbdla
URL Officiel https://chromewebstore.google.com/detail/kitten-blocker/bhlfekkbgcbmlnfclgklmbdmodbhbdla
Description This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere!
Taille du Fichier 99.94 KB
Nombre d'Installations 57
Version Actuelle 0.3
Dernière Mise à Jour 2022-09-25
Date de Publication 2014-11-05
Évaluation 5.00/5 Total 4 Évaluations
Développeur mattogodoy
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kitten Blocker",
    "short_name": "Kitten Blocker",
    "version": "0.3",
    "homepage_url": "https:\/\/matto.io",
    "description": "This extension replaces kitten pictures with a photo of Rick Astley. Now you don't have to see them everywhere!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon_19.png",
            "38": "img\/icon_38.png"
        },
        "default_title": "Kitten Blocker",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "vendor\/jquery.min.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "img\/*"
    ],
    "manifest_version": 2
}