Death to comments!

Banish comments from your internet

Death to comments! là gì?

Death to comments! là một tiện ích mở rộng Chrome được phát triển bởi Tom Chambers, và tính năng chính của nó là "Banish comments from your internet".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Death to comments!

Tải xuống các tệp mở rộng Death to comments! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Death to comments! Death to comments!
ID khkoofdalhndgpihmjeabjljegaghbph
URL Chính Thức https://chromewebstore.google.com/detail/death-to-comments/khkoofdalhndgpihmjeabjljegaghbph
Mô tả Banish comments from your internet
Kích Thước Tệp 4.68 KB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2014-08-20
Ngày Phát Hành 2014-08-20
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Tom Chambers
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}