Cortex Cookie Manager
Switch cortex debug mode.
Cos'è Cortex Cookie Manager?
Cortex Cookie Manager è un'estensione di Chrome sviluppata da Kaelzhang, e la sua funzione principale è "Switch cortex debug mode.".
Scarica il file CRX dell'estensione Cortex Cookie Manager
Scarica i file di estensione Cortex Cookie Manager 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
Manages browser cookies for neocortex based websites. Click the cortex icon on your action bar of Chrome to switch on and off debug mode. When you are in debug mode, neocortex will output uncompressed static resources with no combo files and config neuron path to localhost, so you can use cortex server to debug online.
Informazioni di Base sull'Estensione
Nome | |
ID | gdcahccbgbmjkadajipnfjloflibhjop |
URL Ufficiale | https://chrome.google.com/webstore/detail/cortex-cookie-manager/gdcahccbgbmjkadajipnfjloflibhjop |
Descrizione | Switch cortex debug mode. |
Dimensione del File | 36.28 KB |
Conteggio Installazioni | 234 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2015-11-10 |
Data di Pubblicazione | 2015-11-10 |
Valutazione | 4.75/5 Totale 4 Valutazioni |
Sviluppatore | Kaelzhang |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cortex Cookie Manager", "version": "1.1.0", "description": "Switch cortex debug mode.", "permissions": [ "tabs", "http:\/\/*\/*" ], "icons": { "128": "i\/icon-128.png", "48": "i\/icon-48.png", "16": "i\/icon-16.png" }, "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "cortex.js" ], "all_frames": true } ], "browser_action": { "default_title": "Switch cortex debug mode", "default_icon": "i\/icon-active-64.png", "default_popup": "popup.html" } } |