Shut Up: Comment Blocker

Toggles comments on many popular websites.

Shut Up: Comment Blocker là gì?

Shut Up: Comment Blocker là một tiện ích mở rộng Chrome được phát triển bởi https://rickyromero.com, và tính năng chính của nó là "Toggles comments on many popular websites.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Shut Up: Comment Blocker

Tải xuống các tệp mở rộng Shut Up: Comment Blocker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        If you've ever gone to a website and read its comments section, you'll have seen that it's just a vitriolic, idiotic wasteland.

Why subject yourself to that?

Shut Up hides comments by default.  And, you can show comments on a page with a click of a button.  It will remember where you turn on comments, and will show them the next time you visit that site.

That's it.  Simple and free.  Enjoy!


Uses shutup.css by Steven Frank, with permission.
https://github.com/panicsteve/shutup-css                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Shut Up: Comment Blocker Shut Up: Comment Blocker
ID oklfoejikkmejobodofaimigojomlfim
URL Chính Thức https://chromewebstore.google.com/detail/shut-up-comment-blocker/oklfoejikkmejobodofaimigojomlfim
Mô tả Toggles comments on many popular websites.
Kích Thước Tệp 256 KB
Số Lần Cài Đặt 12,509
Phiên Bản Hiện Tại 8.0.1
Cập Nhật Lần Cuối 2022-09-22
Ngày Phát Hành 2020-04-22
Đánh Giá 4.70/5 Tổng số 266 Đánh Giá
Nhà Phát Triển https://rickyromero.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://rickyromero.com/
URL Trang Trợ Giúp https://rickyromero.com/shutup/
URL Trang Chính Sách Bảo Mật https://rickyromero.com/shutup/privacy
Ngôn Ngữ Được Hỗ Trợ de,en,fr,es,ar,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Shut Up: Comment Blocker",
    "short_name": "__MSG_product_name__",
    "version": "8.0.1",
    "description": "__MSG_manifest_description__",
    "author": "Ricky Romero",
    "homepage_url": "https:\/\/rickyromero.com\/shutup\/",
    "minimum_chrome_version": "55.0.2883.75",
    "default_locale": "en",
    "offline_enabled": true,
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "incognito": "split",
    "content_security_policy": "script-src 'self'; object-src 'none'",
    "icons": {
        "16": "images\/main-icon\/16.png",
        "32": "images\/main-icon\/32.png",
        "96": "images\/main-icon\/96.png",
        "128": "images\/main-icon\/128.png",
        "256": "images\/main-icon\/256.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            }
        }
    },
    "background": {
        "scripts": [
            "scripts\/utils.js",
            "scripts\/storage.js",
            "scripts\/private\/options.js",
            "scripts\/private\/whitelist.js",
            "scripts\/private\/stylesheet.js",
            "scripts\/private\/ui-bridge.js",
            "scripts\/private\/message-queue.js",
            "scripts\/event-bridge.js",
            "scripts\/private\/private-event-bridge.js",
            "scripts\/private\/upgrade.js",
            "scripts\/private\/init.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/utils.js",
                "scripts\/injected\/injection-manager.js",
                "scripts\/event-bridge.js",
                "scripts\/injected\/injected-event-bridge.js",
                "scripts\/injected\/controller.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "web_accessible_resources": [
        "resources\/shutup.css",
        "resources\/null.css"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/browser-action\/default-state.png",
            "32": "images\/browser-action\/[email protected]"
        },
        "default_title": "__MSG_product_name__"
    },
    "options_ui": {
        "page": "options\/index-wrapper.html",
        "open_in_tab": true,
        "chrome_style": false
    }
}