Comment Killer

Removes comment sections from most webpages.

Comment Killer란 무엇입니까?

Comment Killer은(는) Sundog Software에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes comment sections from most webpages."입니다.

확장 프로그램 스크린샷

screenshot

Comment Killer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Comment Killer Comment Killer
ID pempgkkicmgobgononeemlgeeiokimca
공식 URL https://chromewebstore.google.com/detail/comment-killer/pempgkkicmgobgononeemlgeeiokimca
설명 Removes comment sections from most webpages.
파일 크기 708 KB
설치 횟수 92
현재 버전 1.1.0
최근 업데이트 2020-07-07
출시 날짜 2014-12-02
평점 3.60/5 총 5 개의 평점
개발자 Sundog Software
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://nohatenews.com/introducing-comment-killer/
지원되는 언어 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
        }
    ]
}