EmotiClean

Replace bad words with emoji!

EmotiCleanคืออะไร?

EmotiClean เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://catskull.net และคุณลักษณะหลักของมันคือ "Replace bad words with emoji!"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        A Chrome extension to replace bad words with emoji!

This extension will scan all words on a web page and look for some "naughty" words. If a "naughty" word is found, it will be replaced with an emoji which conveys a similar meaning.

Works for Facebook, Youtube comments, Twitter, and more!

This extension is open source! Download and help improve the code here: https://github.com/catskull/EmotiClean

This is a fork of a great open source extension SimpleProfanityFilter.                    

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

ชื่อ EmotiClean EmotiClean
ID eocdedidpfdncgnfadiknoncllmeohcd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/emoticlean/eocdedidpfdncgnfadiknoncllmeohcd
คำอธิบาย Replace bad words with emoji!
ขนาดไฟล์ 36.92 KB
จำนวนการติดตั้ง 12
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2015-11-04
วันที่เผยแพร่ 2015-11-04
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา http://catskull.net
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/catskull/EmotiClean/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "EmotiClean",
    "version": "0.0.2",
    "description": "Replace bad words with emoji!",
    "icons": {
        "128": "icon.png",
        "48": "icon_small.png"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "filter.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs"
    ]
}