Cookie Monitor
This extension monitors the cookies addition and deletion
Cookie Monitorคืออะไร?
Cookie Monitor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shahul Hameed ([email protected]) และคุณลักษณะหลักของมันคือ "This extension monitors the cookies addition and deletion"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cookie Monitor
ดาวน์โหลดไฟล์ส่วนขยาย Cookie Monitor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension monitors the cookies addition and deletion. You can give the domain, name and value in the form of regex pattern. It will monitor all those cookies and give you an alert whenever a change (add, delete or modify) done. It will alert you when you do change manually by add ons or via http requests.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Cookie Monitor |
ID | ccalldmbpkkpjcfgahbnpeffakpdldhj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/cookie-monitor/ccalldmbpkkpjcfgahbnpeffakpdldhj |
คำอธิบาย | This extension monitors the cookies addition and deletion |
ขนาดไฟล์ | 22.28 KB |
จำนวนการติดตั้ง | 1,120 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2014-12-26 |
วันที่เผยแพร่ | 2014-12-25 |
คะแนน | 3.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Shahul Hameed ([email protected]) |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cookie Monitor", "description": "This extension monitors the cookies addition and deletion", "version": "1.0", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Cookie Monitor" }, "background": { "scripts": [ "cookiemon-background.js" ], "persistent": true }, "permissions": [ "tabs", "cookies", "storage", "webRequest", "https:\/\/*\/*", "http:\/\/*\/*" ], "author": "Shahul Hameed, N" } |