Turdifier

Let you select some words that will be replaced by the poo emoji on every pages

Turdifier là gì?

Turdifier là một tiện ích mở rộng Chrome được phát triển bởi http://antoine.work, và tính năng chính của nó là "Let you select some words that will be replaced by the poo emoji on every pages".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Turdifier 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 let you choose a list of words that will be replaced by the "pile of poo" unicode character. The original font size of the word will be unchanged.

It also replace the choosen words in page title but might produce weird characters on old OS.

Found a bug ? need a feature ? Please send me a mail at [email protected]                    

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

Tên Turdifier Turdifier
ID pacfpdfkogneijkijmgjhdfghhfklbno
URL Chính Thức https://chrome.google.com/webstore/detail/turdifier/pacfpdfkogneijkijmgjhdfghhfklbno
Mô tả Let you select some words that will be replaced by the poo emoji on every pages
Kích Thước Tệp 28.17 KB
Số Lần Cài Đặt 58
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-11-02
Ngày Phát Hành 2017-11-02
Đánh Giá 4.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển http://antoine.work
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://lab.antoine.work/turdifier/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Turdifier",
    "short_name": "Turdifier",
    "description": "Let you select some words that will be replaced by the poo emoji on every pages",
    "version": "1.0",
    "icons": {
        "128": "icon_128.png"
    },
    "author": "Antoine Guillien",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "browser_action": {
        "default_title": "Turdify",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": false
    },
    "manifest_version": 2
}