Replacer

Replaces all images with an image of your choice

Was ist Replacer?

Replacer ist eine Chrome-Erweiterung, die von michaelm244 entwickelt wurde, und ihr Hauptmerkmal ist "Replaces all images with an image of your choice".

Erweiterungsscreenshots

screenshot

Replacer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Replacer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Replacer Replacer
ID nkkofabfinoleplbkkbmhhkjmomdgpag
Offizielle URL https://chrome.google.com/webstore/detail/replacer/nkkofabfinoleplbkkbmhhkjmomdgpag
Beschreibung Replaces all images with an image of your choice
Dateigröße 606 KB
Installationsanzahl 294
Aktuelle Version 1.0
Letztes Update 2014-01-18
Veröffentlichungsdatum 2014-01-18
Bewertung 2.07/5 Insgesamt 14 Bewertungen
Entwickler michaelm244
Zahlungsart free
Erweiterungswebsite https://github.com/michaelm244/replacer
Unterstützte Sprachen 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'"
}