Nicolas Cage Replacer

Replaces all images on all pages to Nicolas Cage.

Vad är Nicolas Cage Replacer?

Nicolas Cage Replacer är en Chrome-tillägg utvecklad av sorackb, och dess huvudfunktion är "Replaces all images on all pages to Nicolas Cage.".

Tilläggsskärmbilder

screenshot

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

Ladda ner Nicolas Cage 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

                        Replaces all images on all pages to Nicolas Cage images.                    

Grundläggande Information om Tillägg

Namn Nicolas Cage Replacer Nicolas Cage Replacer
ID ggognilmkpjemcpjoaohmjljbonbgcgh
Officiell webbadress https://chrome.google.com/webstore/detail/nicolas-cage-replacer/ggognilmkpjemcpjoaohmjljbonbgcgh
Beskrivning Replaces all images on all pages to Nicolas Cage.
Filstorlek 39.48 KB
Antal Installationer 2,000
Aktuell Version 1.0
Senast Uppdaterad 2019-04-09
Publiceringsdatum 2019-04-08
Betyg 4.53/5 Totalt 17 Betyg
Utvecklare sorackb
Betalningssätt free
Stödda Språk 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"
    ]
}