Blacklist

Blacklist is a very simple website blocker designed for personal use.

Blacklistคืออะไร?

Blacklist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://rahulgi.com และคุณลักษณะหลักของมันคือ "Blacklist is a very simple website blocker designed for personal use."

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

screenshot
screenshot
screenshot

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

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

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

                        This is a very simple extension for Google Chrome. When you find yourself on a website that is taking too much of your time, simply hit the Blacklist button in the upper right corner of Chrome and you will be blocked from visiting that site while Blacklist remains active. To resume visiting any site blocked by Blacklist, you must visit the site, click the Blacklist extension button in the upper right corner of the browser, and then click the "unlist" button. You will be forced to wait for 15 seconds before the site is unlisted and you are redirected to the root URL.                    

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

ชื่อ Blacklist Blacklist
ID jbpccandodannohfaoncogijbkfcmpgo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/blacklist/jbpccandodannohfaoncogijbkfcmpgo
คำอธิบาย Blacklist is a very simple website blocker designed for personal use.
ขนาดไฟล์ 575 KB
จำนวนการติดตั้ง 34,267
เวอร์ชันปัจจุบัน 0.93
อัปเดตครั้งล่าสุด 2019-12-09
วันที่เผยแพร่ 2019-12-09
คะแนน 3.71/5 รวมทั้งหมด 104 คะแนน
ผู้พัฒนา http://rahulgi.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://rahulgi.com/blacklist
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blacklist",
    "version": "0.93",
    "manifest_version": 2,
    "description": "Blacklist is a very simple website blocker designed for personal use.",
    "icons": {
        "16": "icon.16.png",
        "48": "icon.48.png",
        "128": "icon.128.png"
    },
    "homepage_url": "http:\/\/rahulgi.github.com\/Blacklist",
    "browser_action": {
        "default_icon": "icon.48.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "blockedSite.html"
    ],
    "permissions": [
        "*:\/\/*\/*",
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "webNavigation"
    ],
    "incognito": "split"
}