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.                    

拡張機能の基本情報

名前 Cortex Cookie Manager Cortex Cookie Manager
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"
    }
}