Venmo to Venom

Replace all instances of Venmo with a much better word, Venom.

Vad är Venmo to Venom?

Venmo to Venom är en Chrome-tillägg utvecklad av benjawmino, och dess huvudfunktion är "Replace all instances of Venmo with a much better word, Venom.".

Tilläggsskärmbilder

screenshot

Ladda ner Venmo to Venom-förlängningens CRX-fil

Ladda ner Venmo to Venom-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

                        Very simple extension to replace all instances of the word "Venmo" with "Venom".

Based on the template provided in 9to5google's article "How-to: Make your own text-replacing Chrome extension like ‘Millennials to Snake People’".                    

Grundläggande Information om Tillägg

Namn Venmo to Venom Venmo to Venom
ID ojbpdcigfaebohhojhfpcjelahlbbpce
Officiell webbadress https://chromewebstore.google.com/detail/venmo-to-venom/ojbpdcigfaebohhojhfpcjelahlbbpce
Beskrivning Replace all instances of Venmo with a much better word, Venom.
Filstorlek 3.52 KB
Antal Installationer 130
Aktuell Version 0.0.1
Senast Uppdaterad 2019-05-14
Publiceringsdatum 2019-05-11
Betyg 4.50/5 Totalt 2 Betyg
Utvecklare benjawmino
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Venmo to Venom",
    "description": "Replace all instances of Venmo with a much better word, Venom.",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}