Cookie Monitor
This extension monitors the cookies addition and deletion
Что такое Cookie Monitor?
Cookie Monitor - это расширение Chrome, разработанное Shahul Hameed ([email protected]), и его основная функция - "This extension monitors the cookies addition and deletion".
Снимки экрана расширения
Скачать файл CRX расширения Cookie Monitor
Скачайте файлы расширений Cookie Monitor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension monitors the cookies addition and deletion. You can give the domain, name and value in the form of regex pattern. It will monitor all those cookies and give you an alert whenever a change (add, delete or modify) done. It will alert you when you do change manually by add ons or via http requests.
Основная информация о расширении
Название | Cookie Monitor |
ID | ccalldmbpkkpjcfgahbnpeffakpdldhj |
Официальный URL | https://chromewebstore.google.com/detail/cookie-monitor/ccalldmbpkkpjcfgahbnpeffakpdldhj |
Описание | This extension monitors the cookies addition and deletion |
Размер файла | 22.28 KB |
Количество установок | 1,120 |
Текущая Версия | 1.0 |
Последнее Обновление | 2014-12-26 |
Дата публикации | 2014-12-25 |
Рейтинг | 3.00/5 Всего 5 оценок |
Разработчик | Shahul Hameed ([email protected]) |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cookie Monitor", "description": "This extension monitors the cookies addition and deletion", "version": "1.0", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Cookie Monitor" }, "background": { "scripts": [ "cookiemon-background.js" ], "persistent": true }, "permissions": [ "tabs", "cookies", "storage", "webRequest", "https:\/\/*\/*", "http:\/\/*\/*" ], "author": "Shahul Hameed, N" } |