Killswitch

Exercise stronger control over abusable APIs

Killswitch क्या है?

Killswitch zacharywade द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Exercise stronger control over abusable APIs"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Killswitch एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    }
}