EmotiClean
Replace bad words with emoji!
ما هو EmotiClean؟
EmotiClean هو إضافة Chrome تم تطويرها بواسطة http://catskull.net، والميزة الرئيسية لها هي "Replace bad words with emoji!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة EmotiClean
قم بتنزيل ملفات الامتداد EmotiClean بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | |
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 |
عنوان صفحة المساعدة | 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" ] } |