Cookie Notification Preventer (CNP)

Simple extension for preventing web site's cookies notifications.

Cookie Notification Preventer (CNP)란 무엇입니까?

Cookie Notification Preventer (CNP)은(는) Aleš Papler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple extension for preventing web site's cookies notifications."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Cookie Notification Preventer (CNP) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Tired of annoying cookie notifications on web sites? 

Then this Cookie Notification Preventer is a perfect solution for you. It allows you to get rid of the cookie notifications with a single click. 

• After installing this extension Chrome's context menu will have two new features. So in order to get rid of the cookie notification all you have to do is to right click on web site element and choose “Click on this element” or “Hide this element”.  From that moment on the extension will click or hide this annoying element every time you open or refresh the web site. 

• Cookie Notification Preventer has an Options page where you can view, edit or delete stored elements.

• On Options page you can also find the General switch with which you are able to enable or disable the extension’s auto-clicking and hiding.                    

확장 프로그램 기본 정보

이름 Cookie Notification Preventer (CNP) Cookie Notification Preventer (CNP)
ID nibhfnfgknipgjgipdoapppjpeakljek
공식 URL https://chromewebstore.google.com/detail/cookie-notification-preve/nibhfnfgknipgjgipdoapppjpeakljek
설명 Simple extension for preventing web site's cookies notifications.
파일 크기 415 KB
설치 횟수 192
현재 버전 1.0.0
최근 업데이트 2014-08-19
출시 날짜 2014-08-19
평점 2.11/5 총 9 개의 평점
개발자 Aleš Papler
결제 유형 free
지원되는 언어 en,sl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "1.0.0",
    "default_locale": "en",
    "description": "__MSG_extDesc__",
    "icons": {
        "16": "images\/16x16\/icon.png",
        "48": "images\/48x48\/icon.png",
        "128": "images\/128x128\/icon.png"
    },
    "browser_action": {
        "default_icon": "images\/16x16\/icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage",
        "notifications",
        "contextMenus",
        "tabs",
        "*:\/\/*\/*"
    ]
}