Replacer

Replaces all images with an image of your choice

Hvad er Replacer?

Replacer er en Chrome-udvidelse udviklet af michaelm244, og dens hovedfunktion er "Replaces all images with an image of your choice".

Udvidelsesskærmbilleder

screenshot

Download Replacer-udvidelses-CRX-fil

Download Replacer-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

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Replacer Replacer
ID nkkofabfinoleplbkkbmhhkjmomdgpag
Officiel URL https://chrome.google.com/webstore/detail/replacer/nkkofabfinoleplbkkbmhhkjmomdgpag
Beskrivelse Replaces all images with an image of your choice
Filstørrelse 606 KB
Antal Installationer 294
Nuværende Version 1.0
Senest Opdateret 2014-01-18
Udgivelsesdato 2014-01-18
Bedømmelse 2.07/5 Samlet 14 Bedømmelser
Udvikler michaelm244
Betalingsmetode free
Udvidelseswebsted https://github.com/michaelm244/replacer
Understøttede Sprog 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'"
}