Cortex Cookie Manager

Switch cortex debug mode.

Vad är Cortex Cookie Manager?

Cortex Cookie Manager är en Chrome-tillägg utvecklad av Kaelzhang, och dess huvudfunktion är "Switch cortex debug mode.".

Ladda ner Cortex Cookie Manager-förlängningens CRX-fil

Ladda ner Cortex Cookie Manager-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Cortex Cookie Manager Cortex Cookie Manager
ID gdcahccbgbmjkadajipnfjloflibhjop
Officiell webbadress https://chrome.google.com/webstore/detail/cortex-cookie-manager/gdcahccbgbmjkadajipnfjloflibhjop
Beskrivning Switch cortex debug mode.
Filstorlek 36.28 KB
Antal Installationer 234
Aktuell Version 1.1.0
Senast Uppdaterad 2015-11-10
Publiceringsdatum 2015-11-10
Betyg 4.75/5 Totalt 4 Betyg
Utvecklare Kaelzhang
Betalningssätt free
Stödda Språk 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"
    }
}