Nicolas Cage Replacer

Replaces all images on all pages to Nicolas Cage.

Was ist Nicolas Cage Replacer?

Nicolas Cage Replacer ist eine Chrome-Erweiterung, die von sorackb entwickelt wurde, und ihr Hauptmerkmal ist "Replaces all images on all pages to Nicolas Cage.".

Erweiterungsscreenshots

screenshot

Nicolas Cage Replacer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Nicolas Cage 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

                        Replaces all images on all pages to Nicolas Cage images.                    

Grundlegende Informationen zur Erweiterung

Name Nicolas Cage Replacer Nicolas Cage Replacer
ID ggognilmkpjemcpjoaohmjljbonbgcgh
Offizielle URL https://chrome.google.com/webstore/detail/nicolas-cage-replacer/ggognilmkpjemcpjoaohmjljbonbgcgh
Beschreibung Replaces all images on all pages to Nicolas Cage.
Dateigröße 39.48 KB
Installationsanzahl 2,000
Aktuelle Version 1.0
Letztes Update 2019-04-09
Veröffentlichungsdatum 2019-04-08
Bewertung 4.53/5 Insgesamt 17 Bewertungen
Entwickler sorackb
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "short_name": "niccage",
    "name": "Nicolas Cage Replacer",
    "description": "Replaces all images on all pages to Nicolas Cage.",
    "version": "1.0",
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "content.js",
        "data.js"
    ]
}