Cookie Monitor
This extension monitors the cookies addition and deletion
Was ist Cookie Monitor?
Cookie Monitor ist eine Chrome-Erweiterung, die von Shahul Hameed ([email protected]) entwickelt wurde, und ihr Hauptmerkmal ist "This extension monitors the cookies addition and deletion".
Erweiterungsscreenshots
Cookie Monitor-Erweiterungs-CRX-Datei herunterladen
Laden Sie Cookie Monitor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Cookie Monitor |
ID | ccalldmbpkkpjcfgahbnpeffakpdldhj |
Offizielle URL | https://chromewebstore.google.com/detail/cookie-monitor/ccalldmbpkkpjcfgahbnpeffakpdldhj |
Beschreibung | This extension monitors the cookies addition and deletion |
Dateigröße | 22.28 KB |
Installationsanzahl | 1,120 |
Aktuelle Version | 1.0 |
Letztes Update | 2014-12-26 |
Veröffentlichungsdatum | 2014-12-25 |
Bewertung | 3.00/5 Insgesamt 5 Bewertungen |
Entwickler | Shahul Hameed ([email protected]) |
Zahlungsart | free |
Unterstützte Sprachen | 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" } |