Anti-Social - hide all the comments!

Hide comment sections on sites and blogs. Read the content that matters to you without accidentally ruining your day with Trolls.

Anti-Social - hide all the comments!란 무엇입니까?

Anti-Social - hide all the comments!은(는) labyrinthlabs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide comment sections on sites and blogs. Read the content that matters to you without accidentally ruining your day with Trolls."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Anti-Social - hide all the comments! 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        See no Trolls, hear no Trolls, be no Troll: this extension hides comments sections on sites and blogs, leaving you free to read the content that matters to you without accidentally ruining your day with Trolls (or worse: inviting your dark side for an Internet discussion)                    

확장 프로그램 기본 정보

이름 Anti-Social - hide all the comments! Anti-Social - hide all the comments!
ID ngmpaodhbmmkamjlgdajipkanidojngm
공식 URL https://chromewebstore.google.com/detail/anti-social-hide-all-the/ngmpaodhbmmkamjlgdajipkanidojngm
설명 Hide comment sections on sites and blogs. Read the content that matters to you without accidentally ruining your day with Trolls.
파일 크기 41.97 KB
설치 횟수 205
현재 버전 1.0.1
최근 업데이트 2015-03-14
출시 날짜 2015-03-14
평점 3.78/5 총 9 개의 평점
개발자 labyrinthlabs
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/herval/antisocial-chrome
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Anti-Social - hide all the comments!",
    "description": "Hide comment sections on sites and blogs. Read the content that matters to you without accidentally ruining your day with Trolls.",
    "version": "1.0.1",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "jquery-1.11.2.min.js",
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Hiding comments, yay!"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "antisocial.css"
            ],
            "js": [
                "jquery-1.11.2.min.js",
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}