Curse in Calligraphy

Put swear words in a calligraphy font.

Что такое Curse in Calligraphy?

Curse in Calligraphy - это расширение Chrome, разработанное Tagurit Studios, и его основная функция - "Put swear words in a calligraphy font.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Curse in Calligraphy

Скачайте файлы расширений Curse in Calligraphy в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Curse in Calligraphy Curse in Calligraphy
ID phibbfpngemonhedhaeopnminldbjjfi
Официальный URL https://chrome.google.com/webstore/detail/curse-in-calligraphy/phibbfpngemonhedhaeopnminldbjjfi
Описание Put swear words in a calligraphy font.
Размер файла 87.47 KB
Количество установок 58
Текущая Версия 1.1.2
Последнее Обновление 2020-06-25
Дата публикации 2020-06-25
Рейтинг 4.00/5 Всего 2 оценок
Разработчик Tagurit Studios
Электронная почта [email protected]
Тип оплаты in_app
Поддерживаемые языки 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"
        }
    ]
}