Death to comments!
Banish comments from your internet
Death to comments!คืออะไร?
Death to comments! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tom Chambers และคุณลักษณะหลักของมันคือ "Banish comments from your internet"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Death to comments!
ดาวน์โหลดไฟล์ส่วนขยาย Death to comments! ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Are you sick and tired of reading through an endless stream of vitriol and lunacy? Is your worldview being poisoned by bizarre claims and unnecessary personal attacks? Death to Comments is a chrome extension that blocks comments everywhere. Works on youtube and gakwer sites. Future features may include whitelisting. This is beta software that I made in the past hour, there may be bugs and performance issues. Please email me at [email protected] with bugs and feature requests. I will try to be responsive. Source code for the comment blocker is available at: https://github.com/tomchambers2/death_to_comments. You are welcome to contribute.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Death to comments! |
ID | khkoofdalhndgpihmjeabjljegaghbph |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/death-to-comments/khkoofdalhndgpihmjeabjljegaghbph |
คำอธิบาย | Banish comments from your internet |
ขนาดไฟล์ | 4.68 KB |
จำนวนการติดตั้ง | 15 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2014-08-20 |
วันที่เผยแพร่ | 2014-08-20 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Tom Chambers |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Death to comments!", "description": "Banish comments from your internet", "version": "0.1", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ] } |