Curse in Calligraphy

Put swear words in a calligraphy font.

What is Curse in Calligraphy?

Curse in Calligraphy is a Chrome extension developed by Tagurit Studios, and its main feature is "Put swear words in a calligraphy font.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Curse in Calligraphy Extension CRX File

Download Curse in Calligraphy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Curse in Calligraphy Curse in Calligraphy
ID phibbfpngemonhedhaeopnminldbjjfi
Official URL https://chrome.google.com/webstore/detail/curse-in-calligraphy/phibbfpngemonhedhaeopnminldbjjfi
Description Put swear words in a calligraphy font.
File Size 87.47 KB
Installation Count 58
Current Version 1.1.2
Last Updated 2020-06-25
Publish Date 2020-06-25
Rating 4.00/5 Total 2 Ratings
Developer Tagurit Studios
Email [email protected]
Payment Type in_app
Supported Languages 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"
        }
    ]
}