Cortex Cookie Manager

Switch cortex debug mode.

ما هو Cortex Cookie Manager؟

Cortex Cookie Manager هو إضافة Chrome تم تطويرها بواسطة Kaelzhang، والميزة الرئيسية لها هي "Switch cortex debug mode.".

تحميل ملف CRX للإضافة Cortex Cookie Manager

قم بتنزيل ملفات الامتداد Cortex Cookie Manager بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}