Cortex Cookie Manager
Switch cortex debug mode.
Wat is Cortex Cookie Manager?
Cortex Cookie Manager is een Chrome-extensie ontwikkeld door Kaelzhang, en de belangrijkste functie is "Switch cortex debug mode.".
Download het CRX-bestand van de extensie Cortex Cookie Manager
Download Cortex Cookie Manager-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | gdcahccbgbmjkadajipnfjloflibhjop |
Officiële URL | https://chrome.google.com/webstore/detail/cortex-cookie-manager/gdcahccbgbmjkadajipnfjloflibhjop |
Beschrijving | Switch cortex debug mode. |
Bestandsgrootte | 36.28 KB |
Aantal Installaties | 234 |
Huidige Versie | 1.1.0 |
Laatst Bijgewerkt | 2015-11-10 |
Publicatiedatum | 2015-11-10 |
Beoordeling | 4.75/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Kaelzhang |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |