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 |
| 官方網址 | 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"
}
} | |