Block Site

A customizable, password-protected website blocker and redirector.

Block Siteคืออะไร?

Block Site เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rynu.smith และคุณลักษณะหลักของมันคือ "A customizable, password-protected website blocker and redirector."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Block Site

ดาวน์โหลดไฟล์ส่วนขยาย Block Site ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ***
Block Site is now on the safer manifest v3. Please report the compatibility bugs you are experiencing. You can export the current rules to a JSON file and send it to me to investigate.
***

This extension will block access to websites of your choosing. A master password controls all customization options, as well as access to any blocked site. It's also possible to redirect navigation from one specific website to another. 


Features:
1. Block unwanted domains. 
2. Prevent access to a range of websites using wildcard matching or regular expression matching.
3. Reverse mode allows access to only some hostnames and blocks access to all others. 
4. Custom redirection; you can redirect a single blocked hostname to a new destination. 
5. Display a custom message on blocked pages.
6. Time and date-based blocking. Only block access to the websites at specified times and dates. This feature can be configured per hostname. 
7. Protect data leakage. This extension prevents certain hostnames from gathering network activity from your computer since blocking occurs before any network request is emitted to the server.
8. Auto-closes blocked tabs after some time.
10. Closes annoying pop-ups as soon as the opening request is received.
11. Pause and resume blocking from the right-click context menu of the toolbar button.
12. Support overwriting configurations by managed storage
13. Block cached page load with service worker
14. Block dynamic page change with history push method

For the FAQs and general feature suggestions please use:
https://webextension.org/listing/block-site.html

For technical bug reports use:
https://github.com/ray-lothian/Block-Site/issues                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Block Site Block Site
ID lebiggkccaodkkmjeimmbogdedcpnmfb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/block-site/lebiggkccaodkkmjeimmbogdedcpnmfb
คำอธิบาย A customizable, password-protected website blocker and redirector.
ขนาดไฟล์ 152 KB
จำนวนการติดตั้ง 83,430
เวอร์ชันปัจจุบัน 0.5.0
อัปเดตครั้งล่าสุด 2023-08-29
วันที่เผยแพร่ 2020-06-21
คะแนน 4.36/5 รวมทั้งหมด 231 คะแนน
ผู้พัฒนา rynu.smith
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://webextension.org/listing/block-site.html
URL หน้าช่วยเหลือ https://webextension.org/listing/block-site.html
URL หน้านโยบายความเป็นส่วนตัว https://add0n.com/policies/rynu.smith.txt
ภาษาที่รองรับ de,en,fr,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Block Site",
    "version": "0.5.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "worker.js"
    },
    "description": "__MSG_app_description__",
    "default_locale": "en",
    "permissions": [
        "activeTab",
        "storage",
        "notifications",
        "alarms",
        "contextMenus",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        ""
    ],
    "storage": {
        "managed_schema": "schema.json"
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/block-site.html",
    "action": {
        "default_icon": {
            "16": "\/data\/icons\/16.png",
            "32": "\/data\/icons\/32.png"
        }
    },
    "options_ui": {
        "page": "data\/options\/index.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "data\/inject\/page-blocker.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/data\/blocked\/index.html",
                "\/data\/close\/index.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "incognito": "split",
    "commands": {
        "_execute_action": []
    }
}