Replacer

Replaces all images with an image of your choice

Vad är Replacer?

Replacer är en Chrome-tillägg utvecklad av michaelm244, och dess huvudfunktion är "Replaces all images with an image of your choice".

Tilläggsskärmbilder

screenshot

Ladda ner Replacer-förlängningens CRX-fil

Ladda ner Replacer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Replacer Replacer
ID nkkofabfinoleplbkkbmhhkjmomdgpag
Officiell webbadress https://chrome.google.com/webstore/detail/replacer/nkkofabfinoleplbkkbmhhkjmomdgpag
Beskrivning Replaces all images with an image of your choice
Filstorlek 606 KB
Antal Installationer 294
Aktuell Version 1.0
Senast Uppdaterad 2014-01-18
Publiceringsdatum 2014-01-18
Betyg 2.07/5 Totalt 14 Betyg
Utvecklare michaelm244
Betalningssätt free
Tilläggswebbplats https://github.com/michaelm244/replacer
Stödda Språk 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'"
}