eyeshade

An extension to block as many sites as you want

eyeshadeคืออะไร?

eyeshade เป็นส่วนขยายของ Chrome ที่พัฒนาโดย eyeshade.blocker และคุณลักษณะหลักของมันคือ "An extension to block as many sites as you want"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        BlockSite is a popular extension for blocking websites. They used to block as many sites as you wanted for free, and had other paid content, but now you have to pay to block more than 6 sites. So I built Eyeshade in about 4 hours to replicate the only functionality of BlockSite I used to use (having an on/off switch to block a list of websites). I was bothered that BlockSite put their most basic functionality behind a paywall after I'd been using it for years.

Features:
Block List - Block as many sites as you please
White List - Whitelist as many sites as you please
Redirect URL and templates - When you access a restricted web page you can ask Eyeshade to redirect you to a site of your choosing or use one of our default pages
Timer - block or white list sites for X amount of time, restrictions will turn off when timer is up

The offensive tips are for me when I'm in a self deprecating mood, the encouraging tips are for when the ADHD flares up.

Futures features: Custom themed tips page you create for redirects

Please let me know if there are any bugs or issues or feature requests, I'm likely to fix any issues quickly, and will add features as time allows.

This extension will always be 100% free and open source :)

If you have a github account you can directly report things here: https://github.com/DaltheCow/Eyeshade/issues                    

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

ชื่อ eyeshade eyeshade
ID kmkhcgnembefhpmiaaghelhiljmojpng
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/eyeshade/kmkhcgnembefhpmiaaghelhiljmojpng
คำอธิบาย An extension to block as many sites as you want
ขนาดไฟล์ 5.69 MB
จำนวนการติดตั้ง 24
เวอร์ชันปัจจุบัน 0.0.0.4
อัปเดตครั้งล่าสุด 2022-10-26
วันที่เผยแพร่ 2021-04-05
ผู้พัฒนา eyeshade.blocker
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/DaltheCow/Eyeshade
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "eyeshade",
    "version": "0.0.0.4",
    "description": "An extension to block as many sites as you want",
    "action": {
        "default_icon": {
            "16": "Eyeshade.png",
            "32": "Eyeshade.png",
            "128": "Eyeshade.png"
        },
        "default_title": "Right Click Me",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "public\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "not_available\/not_available.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_page": "options\/options.html",
    "permissions": [
        "storage",
        "tabs",
        "alarms"
    ],
    "icons": {
        "16": "Eyeshade.png",
        "48": "Eyeshade.png",
        "128": "Eyeshade.png"
    },
    "default_icon": {
        "16": "Eyeshade.png",
        "32": "Eyeshade.png",
        "128": "Eyeshade.png"
    }
}