Curse in Calligraphy

Put swear words in a calligraphy font.

Apa itu Curse in Calligraphy?

Curse in Calligraphy adalah ekstensi Chrome yang dikembangkan oleh Tagurit Studios, dan fitur utamanya adalah "Put swear words in a calligraphy font.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Curse in Calligraphy

Unduh file ekstensi Curse in Calligraphy dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Curse in Calligraphy Curse in Calligraphy
ID phibbfpngemonhedhaeopnminldbjjfi
URL Resmi https://chrome.google.com/webstore/detail/curse-in-calligraphy/phibbfpngemonhedhaeopnminldbjjfi
Deskripsi Put swear words in a calligraphy font.
Ukuran File 87.47 KB
Jumlah Instalasi 58
Versi Saat Ini 1.1.2
Terakhir Diperbarui 2020-06-25
Tanggal Publikasi 2020-06-25
Penilaian 4.00/5 Total 2 Penilaian
Pengembang Tagurit Studios
Email [email protected]
Tipe Pembayaran in_app
Bahasa yang Didukung 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"
        }
    ]
}