Blog Comment Killfile

Provides a killfile for certain blogs.

Blog Comment Killfile란 무엇입니까?

Blog Comment Killfile은(는) fizbin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides a killfile for certain blogs."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        The intention of this script is to hide the comments of commentors you, the reader, do not wish to hear from. In that respect, it's like an old usenet killfile. It does not affect what other visitors to the site will see.

This is not a tool meant for handling spam, only for an individual comment reader to avoid having to see comments they don't wish to see.

When the script works for a given blog, comments will have a [hush] link near the commentor's name. (visible only on mouseover!) Clicking on that will hide comments from that person from then on.                    

확장 프로그램 기본 정보

이름 Blog Comment Killfile Blog Comment Killfile
ID kpoilnkelonbaapoapibddjaojohnpjf
공식 URL https://chromewebstore.google.com/detail/blog-comment-killfile/kpoilnkelonbaapoapibddjaojohnpjf
설명 Provides a killfile for certain blogs.
파일 크기 28.33 KB
설치 횟수 690
현재 버전 0.2.11
최근 업데이트 2017-02-26
출시 날짜 2017-02-25
평점 4.19/5 총 21 개의 평점
개발자 fizbin
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/fizbin/killfile-extension
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blog Comment Killfile",
    "short_name": "killfile",
    "description": "Provides a killfile for certain blogs.",
    "background": {
        "scripts": [
            "serverload.js",
            "define.js",
            "scenarios.js",
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "128": "kficon128.png",
        "64": "kficon64.png",
        "48": "kficon48.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "alarms"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "scenario.css"
            ],
            "js": [
                "clientload.js",
                "define.js",
                "startthunk.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/disqus.com\/embed*",
                "*:\/\/*.disqus.com\/embed*"
            ],
            "css": [
                "scenario.css"
            ],
            "js": [
                "clientload.js",
                "define.js",
                "startthunk.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "kficon19.png",
            "38": "kficon38.png",
            "48": "kficon48.png",
            "64": "kficon64.png",
            "128": "kficon128.png"
        },
        "default_title": "Killfile inactive"
    },
    "manifest_version": 2,
    "version": "0.2.11"
}