Popup Closer

This extension closes popups

Popup Closer란 무엇입니까?

Popup Closer은(는) PowerThemes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension closes popups"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Are you tired of popups? Want to get rid of this problem once and for all? Popup Closer will help you with this.

Instructions:
After the installation you will have the extension icon next to the address bar. If some page has popup window:
1) Click on the icon
2) Click on the popup window
3) Click on the icon again
4) Enjoy                    

확장 프로그램 기본 정보

이름 Popup Closer Popup Closer
ID ojgnkglnfmgpldidgmkelpdolefoijdo
공식 URL https://chromewebstore.google.com/detail/popup-closer/ojgnkglnfmgpldidgmkelpdolefoijdo
설명 This extension closes popups
파일 크기 44.15 KB
설치 횟수 76
현재 버전 0.0.1
최근 업데이트 2014-12-30
출시 날짜 2014-12-30
평점 1.00/5 총 1 개의 평점
개발자 PowerThemes
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Popup Closer",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "This extension closes popups",
    "background": {
        "scripts": [
            "background.js",
            "script.js",
            "off.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "128": "icon1.png"
    },
    "browser_action": {
        "default_title": "Popup Closer",
        "default_icon": "icon1.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "background.js",
                "script.js",
                "off.js"
            ]
        }
    ]
}