Imgur Valentine's Day Replacer

Replaces Valentines day posts from imgur with the money cat...

Cos'è Imgur Valentine's Day Replacer?

Imgur Valentine's Day Replacer è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Replaces Valentines day posts from imgur with the money cat...".

Scarica il file CRX dell'estensione Imgur Valentine's Day Replacer

Scarica i file di estensione Imgur Valentine's Day Replacer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        It's valentine's day season for the internet. If you just broke up with someone, and don't want to see posts with valentine's day in them on imgur use this plugin. It will replace the text and image with a cat.                    

Informazioni di Base sull'Estensione

Nome Imgur Valentine's Day Replacer Imgur Valentine's Day Replacer
ID hneogcmeohdbecpjecfmpnfpkdkmfjbf
URL Ufficiale https://chromewebstore.google.com/detail/imgur-valentines-day-repl/hneogcmeohdbecpjecfmpnfpkdkmfjbf
Descrizione Replaces Valentines day posts from imgur with the money cat...
Dimensione del File 21.19 KB
Conteggio Installazioni 17
Versione Corrente 1.0
Ultimo Aggiornamento 2016-02-05
Data di Pubblicazione 2016-02-05
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Imgur Valentine's Day Replacer",
    "description": "Replaces Valentines day posts from imgur with the money cat...",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "replace valentine with cats"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/imgur.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "*:\/\/imgur.com\/*",
        "webRequest",
        "tabs",
        "*:\/\/s.imgur.com\/*"
    ]
}