Replacer

Replaces all images with an image of your choice

Wat is Replacer?

Replacer is een Chrome-extensie ontwikkeld door michaelm244, en de belangrijkste functie is "Replaces all images with an image of your choice".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Replacer

Download Replacer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Replacer Replacer
ID nkkofabfinoleplbkkbmhhkjmomdgpag
Officiële URL https://chrome.google.com/webstore/detail/replacer/nkkofabfinoleplbkkbmhhkjmomdgpag
Beschrijving Replaces all images with an image of your choice
Bestandsgrootte 606 KB
Aantal Installaties 294
Huidige Versie 1.0
Laatst Bijgewerkt 2014-01-18
Publicatiedatum 2014-01-18
Beoordeling 2.07/5 Totaal 14 Beoordelingen
Ontwikkelaar michaelm244
Betalingswijze free
Extensiewebsite https://github.com/michaelm244/replacer
Ondersteunde Talen 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'"
}