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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" } } |