Peeshkot

Get rid of annoying EU cookie law notices and automatically opt-in where needed.

Что такое Peeshkot?

Peeshkot - это расширение Chrome, разработанное Swizec Teller, и его основная функция - "Get rid of annoying EU cookie law notices and automatically opt-in where needed.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Peeshkot

Скачайте файлы расширений Peeshkot в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Peeshkot auto-accepts warnings on various websites affected by the EU Cookie Law.

It is able to get rid of most common implementations and detects many homegrown variants with the use of some simple heuristics. If you find a website that doesn't work, please let us know!

Developed by @swizec and @eewan                    

Основная информация о расширении

Название Peeshkot Peeshkot
ID idfkeeahcifaocjonphgjmpmmfonahle
Официальный URL https://chrome.google.com/webstore/detail/peeshkot/idfkeeahcifaocjonphgjmpmmfonahle
Описание Get rid of annoying EU cookie law notices and automatically opt-in where needed.
Размер файла 80.07 KB
Количество установок 171
Текущая Версия 0.0.3
Последнее Обновление 2013-07-01
Дата публикации 2013-07-01
Рейтинг 5.00/5 Всего 14 оценок
Разработчик Swizec Teller
Тип оплаты free
URL страницы помощи https://github.com/Swizec/Peeshkot
Поддерживаемые языки en,sl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Peeshkot",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Get rid of annoying EU cookie law notices and automatically opt-in where needed.",
    "homepage_url": "https:\/\/github.com\/Swizec\/Peeshkot",
    "icons": {
        "16": "icons\/peeshkot16.png",
        "48": "icons\/peeshkot48.png",
        "128": "icons\/peeshkot128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/zepto.min.js",
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "options_page": "src\/options_custom\/index.html",
    "page_action": {
        "default_icon": "icons\/peeshkot19.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/zepto.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}