Kill Button

This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.

Kill Button란 무엇입니까?

Kill Button은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This button removes elements on web pages. Just click the kill button (trash can) so it turns red. You can now hover over website elements, which will become red on hovering them. Click on a website element to remove it. If you're happy with the result, press the Escape key or press the trash can again, so it becomes gray.

You might use it for developing or to remove extremely annoying flickering ads that can't be removed with ad blockers or on pages that permit the use of ad blockers. If you deleted too much, please refresh the page.                    

확장 프로그램 기본 정보

이름 Kill Button Kill Button
ID meflldekhdenalgeanoajgkhlmjmkjfb
공식 URL https://chromewebstore.google.com/detail/kill-button/meflldekhdenalgeanoajgkhlmjmkjfb
설명 This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.
파일 크기 6.4 KB
설치 횟수 159
현재 버전 1.0
최근 업데이트 2019-05-21
출시 날짜 2019-05-16
평점 3.00/5 총 1 개의 평점
개발자 Unknown
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kill Button",
    "description": "This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.",
    "version": "1.0",
    "author": "Matthias Luh",
    "icons": {
        "48": "icon_48.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "icon_48.png"
        },
        "default_title": "Kill website elements"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ]
}