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文件

下載NoComment擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}