NoComment

Block/Hide comment sections across the web (Social Media, News Articles, Blogs etc).

NoComment란 무엇입니까?

NoComment은(는) dsgriffin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block/Hide comment sections across the web (Social Media, News Articles, Blogs etc)."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        By default, NoComment hides all comments on all websites where it detects them. In the options you can change this to not hide comments by default.

It also includes an "Allowlist" and a "Blocklist", where you can specify URLs/URL patterns that will allow or block those certain websites only.

For example: 

- If you add "https://twitter.com" to the Blocklist, you will not see any comments on Twitter, but you will still see them elsewhere on all other sites. 
- If you wanted to hide all comments except Facebook, you would add "https://facebook.com" to your Allowlist.
 
People may choose to hide comments for a myriad of reasons including

- Loss of productivity that could spent doing more important or positive things 
- Stress/mental health issues due to constant negativity exposed on many social media sites & news articles. 

And many more. 

Feel free to install, play around with it and send me feedback as to how you find it/if there are any websites it does not work correctly with.

I'm on Github (@dsgriffin) and Twitter (@griffds) if you are interested.

Thank you for reading and all the best!                    

확장 프로그램 기본 정보

이름 NoComment NoComment
ID bcaffknecaohmingfdfimlbllnebpepe
공식 URL https://chromewebstore.google.com/detail/nocomment/bcaffknecaohmingfdfimlbllnebpepe
설명 Block/Hide comment sections across the web (Social Media, News Articles, Blogs etc).
파일 크기 201 KB
설치 횟수 270
현재 버전 1.9.0
최근 업데이트 2020-06-27
출시 날짜 2020-06-26
평점 4.15/5 총 20 개의 평점
개발자 dsgriffin
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://dsgriffin.com
도움말 페이지 URL https://github.com/dsgriffin/NoComment/issues
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NoComment",
    "version": "1.9.0",
    "manifest_version": 2,
    "description": "Block\/Hide comment sections across the web (Social Media, News Articles, Blogs etc).",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    },
    "page_action": {
        "default_icon": {
            "19": "icon-19.png",
            "38": "icon-38.png"
        },
        "default_title": "NoComment",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "128.png"
    ]
}