Cortex Cookie Manager

Switch cortex debug mode.

Co to jest Cortex Cookie Manager?

Cortex Cookie Manager to rozszerzenie Chrome opracowane przez Kaelzhang, a jego główną funkcją jest „Switch cortex debug mode.”.

Pobierz plik CRX rozszerzenia Cortex Cookie Manager

Pobierz pliki rozszerzeń Cortex Cookie Manager w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Cortex Cookie Manager Cortex Cookie Manager
ID gdcahccbgbmjkadajipnfjloflibhjop
Oficjalny URL https://chrome.google.com/webstore/detail/cortex-cookie-manager/gdcahccbgbmjkadajipnfjloflibhjop
Opis Switch cortex debug mode.
Rozmiar pliku 36.28 KB
Liczba instalacji 234
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2015-11-10
Data Publikacji 2015-11-10
Ocena 4.75/5 Łącznie 4 Oceny
Deweloper Kaelzhang
Typ Płatności free
Obsługiwane Języki 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"
    }
}