AskBlocker

Blocks overly-eager permission requests for notifications, location, etc. For example, before you've interacted with the page.

AskBlockerคืออะไร?

AskBlocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://adamlynch.com และคุณลักษณะหลักของมันคือ "Blocks overly-eager permission requests for notifications, location, etc. For example, before you've interacted with the page."

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

screenshot

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

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

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

                        Block overly-eager permission requests for notifications, location, etc. For example, ones that happen before you've interacted with the page. This was created as part of How to improve your permissions UX (https://adamlynch.com/improve-permissions-ux).

How it works:

Permissions requests are blocked until you've interacted with the page; i.e. click, tap, or key press. Although there are the following exceptions:

- If the permission has been previously requested and granted (or explicitly denied).
- If the domain is `localhost` or `127.0.0.1`.
- If you've navigated to the current page from another page on the same domain.

Things not covered and why:

 - Accelerometer, gyroscope, magnetometer, device motion, device orientation, etc. They don't trigger a permissions request popup.
 - Ambient light sensor. It doesn't trigger a permissions request popup.
 - Bluetooth. This can only be requested due to user interaction anyway (https://webbluetoothcg.github.io/web-bluetooth/#requestDevice-user-gesture).
 - Clipboard. It doesn't trigger a permissions request popup.
 - Flash. I don't know how the prompt is triggered or how I can intercept this.
 - Geolocation's `watchPosition` method. There's no way to achieve this without breaking stuff. It returns an ID and it doesn't offer any way to check the status of the permission, like `Notification.permission`. The Permission API could be used but it's asynchronous (Promise based), so there's no way to use it and also still return the ID. 
 - Web USB. Not really supported yet (and the Permission API doesn't support it yet), so it probably won't be annoying anyone.                    

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

ชื่อ AskBlocker AskBlocker
ID eelfgnmggfgncoipinopobfcabnfknho
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/askblocker/eelfgnmggfgncoipinopobfcabnfknho
คำอธิบาย Blocks overly-eager permission requests for notifications, location, etc. For example, before you've interacted with the page.
ขนาดไฟล์ 57.04 KB
จำนวนการติดตั้ง 173
เวอร์ชันปัจจุบัน 1.0.7
อัปเดตครั้งล่าสุด 2018-03-04
วันที่เผยแพร่ 2018-03-04
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://adamlynch.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://adamlynch.com/askblocker/
URL หน้าช่วยเหลือ https://github.com/adam-lynch/askblocker/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AskBlocker",
    "description": "Blocks overly-eager permission requests for notifications, location, etc. For example, before you've interacted with the page.",
    "version": "1.0.7",
    "homepage_url": "https:\/\/adamlynch.com\/askblocker",
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/askBlocker-128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "browser-polyfill.min.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icons\/askBlocker-16.png",
        "32": "icons\/askBlocker-32.png",
        "48": "icons\/askBlocker-48.png",
        "128": "icons\/askBlocker-128.png",
        "512": "icons\/askBlocker-512.png"
    },
    "permissions": []
}