Cookie Monitor
This extension monitors the cookies addition and deletion
Co to jest Cookie Monitor?
Cookie Monitor to rozszerzenie Chrome opracowane przez Shahul Hameed ([email protected]), a jego główną funkcją jest „This extension monitors the cookies addition and deletion”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Cookie Monitor
Pobierz pliki rozszerzeń Cookie Monitor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Cookie Monitor |
ID | ccalldmbpkkpjcfgahbnpeffakpdldhj |
Oficjalny URL | https://chromewebstore.google.com/detail/cookie-monitor/ccalldmbpkkpjcfgahbnpeffakpdldhj |
Opis | This extension monitors the cookies addition and deletion |
Rozmiar pliku | 22.28 KB |
Liczba instalacji | 1,120 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2014-12-26 |
Data Publikacji | 2014-12-25 |
Ocena | 3.00/5 Łącznie 5 Oceny |
Deweloper | Shahul Hameed ([email protected]) |
Typ Płatności | free |
Obsługiwane Języki | 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" } |