Curse in Calligraphy

Put swear words in a calligraphy font.

Curse in Calligraphy là gì?

Curse in Calligraphy là một tiện ích mở rộng Chrome được phát triển bởi Tagurit Studios, và tính năng chính của nó là "Put swear words in a calligraphy font.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Curse in Calligraphy

Tải xuống các tệp mở rộng Curse in Calligraphy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Curse in Calligraphy Curse in Calligraphy
ID phibbfpngemonhedhaeopnminldbjjfi
URL Chính Thức https://chrome.google.com/webstore/detail/curse-in-calligraphy/phibbfpngemonhedhaeopnminldbjjfi
Mô tả Put swear words in a calligraphy font.
Kích Thước Tệp 87.47 KB
Số Lần Cài Đặt 58
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2020-06-25
Ngày Phát Hành 2020-06-25
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Tagurit Studios
Email [email protected]
Loại Thanh Toán in_app
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}