Death to comments!
Banish comments from your internet
Death to comments!란 무엇입니까?
Death to comments!은(는) Tom Chambers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Banish comments from your internet"입니다.
확장 프로그램 스크린샷
Death to comments! 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } ] } |