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.”。
扩展截图
下载Cookie Notification Preventer (CNP)扩展crx文件
下载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) |
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", "*:\/\/*\/*" ] } |