Curse in Calligraphy

Put swear words in a calligraphy font.

Co to jest Curse in Calligraphy?

Curse in Calligraphy to rozszerzenie Chrome opracowane przez Tagurit Studios, a jego główną funkcją jest „Put swear words in a calligraphy font.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Curse in Calligraphy

Pobierz pliki rozszerzeń Curse in Calligraphy w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Curse in Calligraphy Curse in Calligraphy
ID phibbfpngemonhedhaeopnminldbjjfi
Oficjalny URL https://chrome.google.com/webstore/detail/curse-in-calligraphy/phibbfpngemonhedhaeopnminldbjjfi
Opis Put swear words in a calligraphy font.
Rozmiar pliku 87.47 KB
Liczba instalacji 58
Aktualna Wersja 1.1.2
Ostatnia Aktualizacja 2020-06-25
Data Publikacji 2020-06-25
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper Tagurit Studios
E-mail [email protected]
Typ Płatności in_app
Obsługiwane Języki 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"
        }
    ]
}