Cookie Fucker

Removes all cookie warnings. Light and open-sourced.

什么是Cookie Fucker?

Cookie Fucker是由siffash开发的Chrome扩展程序,该扩展的主要功能是“Removes all cookie warnings. Light and open-sourced.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Cookie Fucker扩展crx文件

下载Cookie Fucker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Tired of cookie warnings? This extension removes all of them! No ads, no bullshit, just plain open-source code:
https://github.com/siffash/cookie-fucker

This is the only extension that does not contain huge databases with tons of rules specific for each website. Instead of that the light yet very intelligent algorithm does quick analysis of a webpage and automatically removes all annoying cookie notifications.

Want to know what all the fuss is about and the reason site owners add these warnings? Learn more about General Data Protection Regulation (GDPR):
https://en.wikipedia.org/wiki/General_Data_Protection_Regulation                    

扩展基本信息

名称 Cookie Fucker Cookie Fucker
ID elklahjjpedpdjkojcehflijmfeeejhc
官方URL https://chromewebstore.google.com/detail/cookie-fucker/elklahjjpedpdjkojcehflijmfeeejhc
简介 Removes all cookie warnings. Light and open-sourced.
文件大小 28.03 KB
安装次数 941
当前版本 2.0.1
更新时间 2019-06-20
上架时间 2019-06-20
评分 3.97/5 共33次评分
开发者 siffash
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cookie Fucker",
    "version": "2.0.1",
    "description": "Removes all cookie warnings. Light and open-sourced.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "img\/16.png",
            "32": "img\/32.png",
            "48": "img\/48.png",
            "128": "img\/128.png"
        }
    },
    "icons": {
        "16": "img\/16.png",
        "32": "img\/32.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "manifest_version": 2
}