Don't Visit - Block Sites

Blocks you from accessing websites of your choice.

Don't Visit - Block Sitesคืออะไร?

Don't Visit - Block Sites เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://systemcluster.me และคุณลักษณะหลักของมันคือ "Blocks you from accessing websites of your choice."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Don't Visit - Block Sites

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

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

                        You want to stop yourself from visiting certain sites? This browser extension can help you.

Don't Visit blocks access to specifiable sites or pages. By default it blocks navigating to the specified sites or pages completely, but if desired it can also provide the option to suspend a block for a couple of minutes. 


Open the options page (you can find it by clicking the Don't Visit icon next to the address bar, or by clicking "More Tools>Extensions" in the menu and navigating to "Don't Visit") to add or remove blocked sites.

Please note: This extension is intended to help with productivity or self-control, it's not supposed to wall sites from third parties, since the extension can always be disabled or uninstalled if desired.


Update 2019-09-30: Don't Visit utilizes the webRequest API now, the same one used by ad-blocker addons. This allows blocking sites from loading inside frames as well, as opposed to only blocking top level navigations.                    

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

ชื่อ Don't Visit - Block Sites Don't Visit - Block Sites
ID olccdihofjbikcpbejfgipnighnpabai
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dont-visit-block-sites/olccdihofjbikcpbejfgipnighnpabai
คำอธิบาย Blocks you from accessing websites of your choice.
ขนาดไฟล์ 35.61 KB
จำนวนการติดตั้ง 5,140
เวอร์ชันปัจจุบัน 0.7
อัปเดตครั้งล่าสุด 2019-09-30
วันที่เผยแพร่ 2019-09-29
คะแนน 3.97/5 รวมทั้งหมด 32 คะแนน
ผู้พัฒนา https://systemcluster.me
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Systemcluster/dont-visit
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Don't Visit - Block Sites",
    "short_name": "Don't Visit",
    "description": "Blocks you from accessing websites of your choice.",
    "version": "0.7",
    "author": "Christian Sdunek",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "options_ui": {
        "page": "chrome\/content\/settings_inline.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_title": "Don't Visit",
        "default_icon": {
            "48": "chrome\/skin\/icon48.png",
            "64": "chrome\/skin\/icon64.png",
            "128": "chrome\/skin\/icon128.png"
        }
    },
    "icons": {
        "48": "chrome\/skin\/icon48.png",
        "64": "chrome\/skin\/icon64.png",
        "128": "chrome\/skin\/icon128.png"
    },
    "background": {
        "scripts": [
            "lib\/background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "lib\/stop.js",
        "lib\/stop.css",
        "lib\/stop.html",
        "chrome\/skin\/stop256.png"
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "activeTab",
        "tabs",
        "storage",
        "*:\/\/*\/*"
    ]
}