Killswitch

Exercise stronger control over abusable APIs

Killswitch란 무엇입니까?

Killswitch은(는) zacharywade에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Exercise stronger control over abusable APIs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Killswitch 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}