Killswitch

Exercise stronger control over abusable APIs

什麼是Killswitch?

Killswitch是由zacharywade開發的Chrome擴展程式,該擴展的主要功能是“Exercise stronger control over abusable APIs”。

擴展截圖

screenshot
screenshot
screenshot

下載Killswitch擴展crx文件

下載Killswitch擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Chrome provides a lot of safeguards and permission boundaries for abusable APIs. However, it can be easy to grant a permission on a whim and then forget about it.

Kill Switch can monitor sites' usage of these powerful APIs and let you know when they're being invoked. Additionally, it can provide a further degree of control by prompting you for permission every session, instead of just once.

Please note that this is intended to be a privacy tool, not a security one! This means that a malicious website could easily deactivate Kill Switch and use the APIs regardless of your settings. Instead, consider Kill Switch as a tool to offer you insight into how and when your data is being used.                    

擴展基本資訊

名稱 Killswitch Killswitch
ID jfhaankhjbofagjdnlkjjppjooefegek
官方網址 https://chromewebstore.google.com/detail/killswitch/jfhaankhjbofagjdnlkjjppjooefegek
簡介 Exercise stronger control over abusable APIs
檔案大小 274 KB
安裝次數 37
目前版本 1.1
更新時間 2021-07-08
上架時間 2021-07-01
評分 5.00/5 共 1 次評分
開發者 zacharywade
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/zwade/kill-switch
說明頁面URL https://github.com/zwade/kill-switch/issues
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Killswitch",
    "description": "Exercise stronger control over abusable APIs",
    "version": "1.1",
    "manifest_version": 3,
    "author": "Zach Wade ",
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content-script\/dist\/embedder.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "js\/popup\/dist\/index.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "32": "images\/icon-x1.png",
        "128": "images\/icon-x4.png"
    }
}