Hide Comments Everywhere

Block comments across the web. Show the ones you want. You're in control!

Hide Comments Everywhere란 무엇입니까?

Hide Comments Everywhere은(는) Grant Winney에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block comments across the web. Show the ones you want. You're in control!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Hide Comments Everywhere 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Hide comments across the web, including (but not limited to) Disqus, YouTube, news sites and forums, etc. (See the note below on Facebook.)

USAGE

This addon checks whether it should allow or block comments for a website, based on a combination of sites in a list, sites you've chosen to allow comments on, as well as a personal whitelist (always allow comments) and blacklist (always block comments) that you can define on the Options page.

Your personal lists and other settings use synchronized storage, so they should be available on any machine you've installed the extension on and have logged into the same account with.

Click on the icon in the toolbar and press the "toggle" button to toggle enabling/disabling 
(temporarily, if you choose) the comments on a single domain.

(Note: Some sites like Facebook and Instagram use identifiers and class names that change frequently; it's difficult to account for them, so I've stopped trying. I suggest checking out addons specifically written for those sites, like Fluff Busting Purity for Facebook or Antigram for Instagram. I'm not sure if either blocks comments, but at least you can cut out a lot of time-sucking distractions.)

PERMISSIONS

You'll be notified that it can "read and change all your data on the websites you visit" because that's how it works - it hides certain comment-related elements on the page so you don't see them.

CONTRIBUTING

If you notice a commenting system that could be added (blocked), open an issue (see "support" link). Include the website where you noticed it, and I'll try to follow-up as time permits.

Additionally, if you're comfortable with regex and html/css, you could just create a pull request against the file that defines which sites and html elements are blocked, here: https://github.com/grantwinney/hide-comments-everywhere/blob/master/sites/sites.json

NEED HELP?

Have a question, comment or request?

Open a new issue (see "support" link) with as many details as possible. The more you let me know upfront, the less I'll have to ask later!                    

확장 프로그램 기본 정보

이름 Hide Comments Everywhere Hide Comments Everywhere
ID bmhkdngdngchlneelllmdennfpmepbnc
공식 URL https://chromewebstore.google.com/detail/hide-comments-everywhere/bmhkdngdngchlneelllmdennfpmepbnc
설명 Block comments across the web. Show the ones you want. You're in control!
파일 크기 727 KB
설치 횟수 2,482
현재 버전 1.6.11
최근 업데이트 2023-10-25
출시 날짜 2019-12-08
평점 4.61/5 총 38 개의 평점
개발자 Grant Winney
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://grantwinney.com/hide-comments-everywhere/
도움말 페이지 URL https://github.com/grantwinney/hide-comments-everywhere/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "Grant Winney",
    "homepage_url": "https:\/\/github.com\/grantwinney\/chrome-extension-block-comments",
    "name": "Hide Comments Everywhere",
    "description": "Block comments across the web. Show the ones you want. You're in control!",
    "version": "1.6.11",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/raw.githubusercontent.com\/grantwinney\/hide-comments-everywhere\/master\/sites\/sites.json",
        "https:\/\/raw.githubusercontent.com\/grantwinney\/hide-comments-everywhere\/master\/sites\/version.json"
    ],
    "action": {
        "default_icon": {
            "16": "images\/hide-comments-16.png",
            "32": "images\/hide-comments-32.png",
            "48": "images\/hide-comments-48.png",
            "64": "images\/hide-comments-64.png",
            "128": "images\/hide-comments-128.png"
        },
        "default_title": "Hide Comments Everywhere",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "js": [
                "js\/shared.js",
                "js\/comments.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/hide-comments-16.png",
        "32": "images\/hide-comments-32.png",
        "48": "images\/hide-comments-48.png",
        "64": "images\/hide-comments-64.png",
        "128": "images\/hide-comments-128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "Command+Shift+H"
            }
        }
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{c39bcadb-15e8-46e0-b853-780e4bb0de6e}"
        }
    }
}