Cookie Notification Preventer (CNP)

Simple extension for preventing web site's cookies notifications.

Cookie Notification Preventer (CNP)คืออะไร?

Cookie Notification Preventer (CNP) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aleš Papler และคุณลักษณะหลักของมันคือ "Simple extension for preventing web site's cookies notifications."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cookie Notification Preventer (CNP)

ดาวน์โหลดไฟล์ส่วนขยาย Cookie Notification Preventer (CNP) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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",
        "*:\/\/*\/*"
    ]
}