Replacer

Replaces all images with an image of your choice

Cos'è Replacer?

Replacer è un'estensione di Chrome sviluppata da michaelm244, e la sua funzione principale è "Replaces all images with an image of your choice".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Replacer

Scarica i file di estensione 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

                        There's all these extensions that let you replace all images on the page with ____. So, why not make your own? Just enter something you want to search, and all the images on the page will get replaced with that.                    

Informazioni di Base sull'Estensione

Nome Replacer Replacer
ID nkkofabfinoleplbkkbmhhkjmomdgpag
URL Ufficiale https://chrome.google.com/webstore/detail/replacer/nkkofabfinoleplbkkbmhhkjmomdgpag
Descrizione Replaces all images with an image of your choice
Dimensione del File 606 KB
Conteggio Installazioni 294
Versione Corrente 1.0
Ultimo Aggiornamento 2014-01-18
Data di Pubblicazione 2014-01-18
Valutazione 2.07/5 Totale 14 Valutazioni
Sviluppatore michaelm244
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/michaelm244/replacer
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Replacer",
    "description": "Replaces all images with an image of  your choice",
    "version": "1.0",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "https:\/\/www.google.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google.com; object-src 'self'"
}