Redactor
Redact social media posts that match word filters.
Redactorคืออะไร?
Redactor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://akr.am และคุณลักษณะหลักของมันคือ "Redact social media posts that match word filters."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Redactor
ดาวน์โหลดไฟล์ส่วนขยาย Redactor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Redactor lets you black out posts on Twitter, Reddit and Hacker News that match custom word filters. You can hover over redacted text to view it if you wish. To configure the word filters, go to the add-on's Options page. Words are case-sensitive and only match post text, not usernames.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Redactor |
ID | niopomnhlbbadedejhkpmioegnhpbche |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/redactor/niopomnhlbbadedejhkpmioegnhpbche |
คำอธิบาย | Redact social media posts that match word filters. |
ขนาดไฟล์ | 16.69 KB |
จำนวนการติดตั้ง | 73 |
เวอร์ชันปัจจุบัน | 1.1.0 |
อัปเดตครั้งล่าสุด | 2023-08-09 |
วันที่เผยแพร่ | 2019-09-22 |
ผู้พัฒนา | https://akr.am |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/mohd-akram/redactor/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Redactor", "version": "1.1.0", "description": "Redact social media posts that match word filters.", "icons": { "256": "icon.png" }, "options_ui": { "page": "options.html", "browser_style": true, "chrome_style": true }, "permissions": [ "storage" ], "applications": { "gecko": { "id": "[email protected]" } }, "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*", "*:\/\/*.reddit.com\/*", "*:\/\/*.news.ycombinator.com\/*" ], "js": [ "browser-polyfill.js", "main.js" ] } ] } |