Cortex Cookie Manager

Switch cortex debug mode.

Cortex Cookie Manager là gì?

Cortex Cookie Manager là một tiện ích mở rộng Chrome được phát triển bởi Kaelzhang, và tính năng chính của nó là "Switch cortex debug mode.".

Tải xuống tệp CRX của tiện ích mở rộng Cortex Cookie Manager

Tải xuống các tệp mở rộng Cortex Cookie Manager dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cortex Cookie Manager Cortex Cookie Manager
ID gdcahccbgbmjkadajipnfjloflibhjop
URL Chính Thức https://chrome.google.com/webstore/detail/cortex-cookie-manager/gdcahccbgbmjkadajipnfjloflibhjop
Mô tả Switch cortex debug mode.
Kích Thước Tệp 36.28 KB
Số Lần Cài Đặt 234
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2015-11-10
Ngày Phát Hành 2015-11-10
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Kaelzhang
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}