Cortex Cookie Manager
Switch cortex debug mode.
什么是Cortex Cookie Manager?
Cortex Cookie Manager是由Kaelzhang开发的Chrome扩展程序,该扩展的主要功能是“Switch cortex debug mode.”。
下载Cortex Cookie Manager扩展crx文件
下载Cortex Cookie Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | gdcahccbgbmjkadajipnfjloflibhjop |
官方URL | https://chrome.google.com/webstore/detail/cortex-cookie-manager/gdcahccbgbmjkadajipnfjloflibhjop |
简介 | Switch cortex debug mode. |
文件大小 | 36.28 KB |
安装次数 | 234 |
当前版本 | 1.1.0 |
更新时间 | 2015-11-10 |
上架时间 | 2015-11-10 |
评分 | 4.75/5 共4次评分 |
开发者 | Kaelzhang |
付费类型 | free |
支持的语言 | 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" } } |