Curse in Calligraphy

Put swear words in a calligraphy font.

Cos'è Curse in Calligraphy?

Curse in Calligraphy è un'estensione di Chrome sviluppata da Tagurit Studios, e la sua funzione principale è "Put swear words in a calligraphy font.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Curse in Calligraphy

Scarica i file di estensione Curse in Calligraphy 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

                        This extension does not do anything with slurs because slurs aren't fun.

It also does not support every curse word as the dictionary is hard-coded and I made my best guess as to what words are more and less frequently used as swears.                    

Informazioni di Base sull'Estensione

Nome Curse in Calligraphy Curse in Calligraphy
ID phibbfpngemonhedhaeopnminldbjjfi
URL Ufficiale https://chrome.google.com/webstore/detail/curse-in-calligraphy/phibbfpngemonhedhaeopnminldbjjfi
Descrizione Put swear words in a calligraphy font.
Dimensione del File 87.47 KB
Conteggio Installazioni 58
Versione Corrente 1.1.2
Ultimo Aggiornamento 2020-06-25
Data di Pubblicazione 2020-06-25
Valutazione 4.00/5 Totale 2 Valutazioni
Sviluppatore Tagurit Studios
Email [email protected]
Tipo di Pagamento in_app
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Curse in Calligraphy",
    "version": "1.1.2",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png"
    },
    "description": "Put swear words in a calligraphy font.",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "fonts\/*.woff2"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "css\/fonts.css"
            ],
            "run_at": "document_idle"
        }
    ]
}