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" } |