Are you sure?

Confirm before you visit certain websites

Are you sure?คืออะไร?

Are you sure? เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sgentle และคุณลักษณะหลักของมันคือ "Confirm before you visit certain websites"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Are you sure?

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

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

                        Are you sure?
=============

Are you sure? is a simple extension to help you stay productive on the internet. Distracting sites can be fun, but it's too easy to just visit them without thinking. You can be in the middle of some important work and, before you know it, your fingers have betrayed you and you're looking at cat gifs again.

This extension just pops up a simple dialog box asking "Are you sure?" when you visit a distracting site. It doesn't try to stop you, just helps you be aware of what you're doing so you can make a fully informed decision. It will ask at most once every 5 minutes by default.

The site list is configurable, so you can add whichever sites are most distracting to you. The extension uses Chrome's event filtering API, so it should use no extra memory or CPU except when you're loading one of the sites on the list.

The source is available at https://github.com/sgentle/areyousure - feel free to post issues or suggestions there.

Changes in 3.0
--------------

* Background opacity is now configurable
* Keyboard support/accessibility
* Prevent page CSS from interfering with the button                    

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

ชื่อ Are you sure? Are you sure?
ID gbdcdelppenbmjhgknfggghpdjmbdjlp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/are-you-sure/gbdcdelppenbmjhgknfggghpdjmbdjlp
คำอธิบาย Confirm before you visit certain websites
ขนาดไฟล์ 16.2 KB
จำนวนการติดตั้ง 271
เวอร์ชันปัจจุบัน 3.0
อัปเดตครั้งล่าสุด 2019-11-19
วันที่เผยแพร่ 2019-11-13
คะแนน 4.16/5 รวมทั้งหมด 25 คะแนน
ผู้พัฒนา sgentle
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sgentle/areyousure
URL หน้าช่วยเหลือ https://github.com/sgentle/areyousure/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Are you sure?",
    "description": "Confirm before you visit certain websites",
    "version": "3.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "",
        "webNavigation",
        "alarms",
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "content.css"
    ]
}