Killswitch

Exercise stronger control over abusable APIs

Τι είναι το Killswitch;

Το Killswitch είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον zacharywade, και η κύρια λειτουργία του είναι "Exercise stronger control over abusable APIs".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Killswitch

Λήψη αρχείων επέκτασης 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
Επίσημο 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"
    }
}