Cortex Cookie Manager
Switch cortex debug mode.
What is Cortex Cookie Manager?
Cortex Cookie Manager is a Chrome extension developed by Kaelzhang, and its main feature is "Switch cortex debug mode.".
Download Cortex Cookie Manager Extension CRX File
Download Cortex Cookie Manager extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | gdcahccbgbmjkadajipnfjloflibhjop |
Official URL | https://chrome.google.com/webstore/detail/cortex-cookie-manager/gdcahccbgbmjkadajipnfjloflibhjop |
Description | Switch cortex debug mode. |
File Size | 36.28 KB |
Installation Count | 234 |
Current Version | 1.1.0 |
Last Updated | 2015-11-10 |
Publish Date | 2015-11-10 |
Rating | 4.75/5 Total 4 Ratings |
Developer | Kaelzhang |
Payment Type | free |
Supported Languages | 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" } } |