Deletion Prank

Delete any element that is clicked

Deletion Prank란 무엇입니까?

Deletion Prank은(는) skeys apps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Delete any element that is clicked"입니다.

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

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

확장 프로그램 사용 설명서

                        This extension can be enabled and disabled at will within the page, unlike my other extensions. Basically, when the extension is active, any element clicked on the page will be instantaneously deleted before the browser can even activate it. This applies to text, links, and more!                    

확장 프로그램 기본 정보

이름 Deletion Prank Deletion Prank
ID fbepklogcpfkgbfcoinahppdebnahdja
공식 URL https://chrome.google.com/webstore/detail/deletion-prank/fbepklogcpfkgbfcoinahppdebnahdja
설명 Delete any element that is clicked
파일 크기 60.54 KB
설치 횟수 2,000
현재 버전 0.0.3
최근 업데이트 2016-02-01
출시 날짜 2016-02-01
평점 3.67/5 총 6 개의 평점
개발자 skeys apps
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Deletion Prank",
    "short_name": "Deletion Prank",
    "description": "Delete any element that is clicked",
    "version": "0.0.3",
    "browser_action": {
        "default_image": "asets\/enabled_256.png"
    },
    "web_accessible_resources": [
        "assets\/*"
    ],
    "icons": {
        "256": "assets\/enabled_256.png"
    },
    "background": {
        "scripts": [
            "iconcontroller.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "js": [
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}