Curse in Calligraphy

Put swear words in a calligraphy font.

Vad är Curse in Calligraphy?

Curse in Calligraphy är en Chrome-tillägg utvecklad av Tagurit Studios, och dess huvudfunktion är "Put swear words in a calligraphy font.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Curse in Calligraphy-förlängningens CRX-fil

Ladda ner Curse in Calligraphy-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

                        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.                    

Grundläggande Information om Tillägg

Namn Curse in Calligraphy Curse in Calligraphy
ID phibbfpngemonhedhaeopnminldbjjfi
Officiell webbadress https://chrome.google.com/webstore/detail/curse-in-calligraphy/phibbfpngemonhedhaeopnminldbjjfi
Beskrivning Put swear words in a calligraphy font.
Filstorlek 87.47 KB
Antal Installationer 58
Aktuell Version 1.1.2
Senast Uppdaterad 2020-06-25
Publiceringsdatum 2020-06-25
Betyg 4.00/5 Totalt 2 Betyg
Utvecklare Tagurit Studios
E-post [email protected]
Betalningssätt in_app
Stödda Språk 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"
        }
    ]
}