Turdifier

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

Turdifierคืออะไร?

Turdifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://antoine.work และคุณลักษณะหลักของมันคือ "Let you select some words that will be replaced by the poo emoji on every pages"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Turdifier

ดาวน์โหลดไฟล์ส่วนขยาย Turdifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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]                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Turdifier Turdifier
ID pacfpdfkogneijkijmgjhdfghhfklbno
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/turdifier/pacfpdfkogneijkijmgjhdfghhfklbno
คำอธิบาย Let you select some words that will be replaced by the poo emoji on every pages
ขนาดไฟล์ 28.17 KB
จำนวนการติดตั้ง 58
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-11-02
วันที่เผยแพร่ 2017-11-02
คะแนน 4.00/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา http://antoine.work
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://lab.antoine.work/turdifier/
ภาษาที่รองรับ 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
}