Image Replacer

Replace all images with whatever you want.

Cos'è Image Replacer?

Image Replacer è un'estensione di Chrome sviluppata da https://mysterypancake.github.io, e la sua funzione principale è "Replace all images with whatever you want.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Image Replacer

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

                        Replace all images with whatever you want.

Code on GitHub:
https://github.com/MysteryPancake/Image-Replacer                    

Informazioni di Base sull'Estensione

Nome Image Replacer Image Replacer
ID kjdfnmkplcjchfjealepndkfjgcgonib
URL Ufficiale https://chromewebstore.google.com/detail/image-replacer/kjdfnmkplcjchfjealepndkfjgcgonib
Descrizione Replace all images with whatever you want.
Dimensione del File 23.34 KB
Conteggio Installazioni 3,053
Versione Corrente 1.5
Ultimo Aggiornamento 2023-12-06
Data di Pubblicazione 2018-08-06
Valutazione 4.11/5 Totale 9 Valutazioni
Sviluppatore https://mysterypancake.github.io
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/MysteryPancake/Image-Replacer
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image Replacer",
    "description": "Replace all images with whatever you want.",
    "author": "MysteryPancake",
    "manifest_version": 3,
    "version": "1.5",
    "action": {
        "default_title": "Image Replacer",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "scripts\/Main.js"
            ],
            "all_frames": true
        }
    ],
    "homepage_url": "https:\/\/github.com\/MysteryPancake\/Image-Replacer",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png",
        "512": "icon512.png"
    },
    "permissions": [
        "storage"
    ],
    "short_name": "Image Replacer"
}