Voldemort Replacer

This extension replaces the word Voldemort in websites with one of 3 random values.

Vad är Voldemort Replacer?

Voldemort Replacer är en Chrome-tillägg utvecklad av Buckwheat469, och dess huvudfunktion är "This extension replaces the word Voldemort in websites with one of 3 random values.".

Tilläggsskärmbilder

screenshot

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

Ladda ner Voldemort 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 Voldemort or Lord Voldemort (including the possessive options) with a random choice of "You-Know-Who", "He-Who-Must-Not-Be-Named", or "the Dark Lord".                    

Grundläggande Information om Tillägg

Namn Voldemort Replacer Voldemort Replacer
ID apknhhlmkgippggghbhhdnekmgkaeglb
Officiell webbadress https://chrome.google.com/webstore/detail/voldemort-replacer/apknhhlmkgippggghbhhdnekmgkaeglb
Beskrivning This extension replaces the word Voldemort in websites with one of 3 random values.
Filstorlek 352 KB
Antal Installationer 22
Aktuell Version 1.2
Senast Uppdaterad 2015-05-10
Publiceringsdatum 2015-05-10
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare Buckwheat469
Betalningssätt free
Tilläggswebbplats https://github.com/ajbogh/VoldemortReplacer
Hjälpsida URL https://github.com/ajbogh/VoldemortReplacer/issues
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Voldemort Replacer",
    "description": "This extension replaces the word Voldemort in websites with one of 3 random values.",
    "version": "1.2",
    "permissions": [
        "tabs",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "voldemortReplacer.js"
            ],
            "run_at": "document_end"
        }
    ]
}