Cookie Monitor

This extension monitors the cookies addition and deletion

Cos'è Cookie Monitor?

Cookie Monitor è un'estensione di Chrome sviluppata da Shahul Hameed ([email protected]), e la sua funzione principale è "This extension monitors the cookies addition and deletion".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Cookie Monitor

Scarica i file di estensione Cookie Monitor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Cookie Monitor Cookie Monitor
ID ccalldmbpkkpjcfgahbnpeffakpdldhj
URL Ufficiale https://chromewebstore.google.com/detail/cookie-monitor/ccalldmbpkkpjcfgahbnpeffakpdldhj
Descrizione This extension monitors the cookies addition and deletion
Dimensione del File 22.28 KB
Conteggio Installazioni 1,120
Versione Corrente 1.0
Ultimo Aggiornamento 2014-12-26
Data di Pubblicazione 2014-12-25
Valutazione 3.00/5 Totale 5 Valutazioni
Sviluppatore Shahul Hameed ([email protected])
Tipo di Pagamento free
Lingue Supportate 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"
}