Comment Killer

Removes comment sections from most webpages.

Comment Killer là gì?

Comment Killer là một tiện ích mở rộng Chrome được phát triển bởi Sundog Software, và tính năng chính của nó là "Removes comment sections from most webpages.".

Ả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 Comment Killer

Tải xuống các tệp mở rộng Comment Killer 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

                        Restore your faith in humanity! This extension looks for any sections that have "comment", "discussion", "disqus", or "conversation" in their name - and hides them. If Internet trolls get you down, this will make most of them just go away.

Block comments, and make Internet trolls disappear. Works with YouTube, CNN, Facebook, and pretty much everywhere else. Even pages that load comments dynamically can't escape Comment Killer.

To enable or disable Comment Killer while browsing, just click the "no trolls" icon in your browser bar.                    

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

Tên Comment Killer Comment Killer
ID pempgkkicmgobgononeemlgeeiokimca
URL Chính Thức https://chromewebstore.google.com/detail/comment-killer/pempgkkicmgobgononeemlgeeiokimca
Mô tả Removes comment sections from most webpages.
Kích Thước Tệp 708 KB
Số Lần Cài Đặt 92
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2020-07-07
Ngày Phát Hành 2014-12-02
Đánh Giá 3.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Sundog Software
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://nohatenews.com/introducing-comment-killer/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Comment Killer",
    "short_name": "Removes comment sections from most webpages.",
    "version": "1.1.0",
    "description": "Removes comment sections from most webpages.",
    "icons": {
        "16": "No-Troll-16.png",
        "32": "No-Troll-32.png",
        "48": "No-Troll-48.png",
        "128": "No-Troll-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "No-Troll-19.png",
            "38": "No-Troll-38.png"
        },
        "default_title": "Comment Killer"
    },
    "permissions": [
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "contentscript.js"
            ],
            "all_frames": true
        }
    ]
}