Cookies Extractor
Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.
Cookies Extractorคืออะไร?
Cookies Extractor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย HappyCoder และคุณลักษณะหลักของมันคือ "Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cookies Extractor
ดาวน์โหลดไฟล์ส่วนขยาย Cookies Extractor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Cookies Extractor |
ID | gdbmkehljhmfcjgbjcfaklnabeccddna |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/cookies-extractor/gdbmkehljhmfcjgbjcfaklnabeccddna |
คำอธิบาย | Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs. |
ขนาดไฟล์ | 64.83 KB |
จำนวนการติดตั้ง | 635 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2023-05-23 |
วันที่เผยแพร่ | 2023-05-23 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | HappyCoder |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cookies Extractor", "description": "Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.", "version": "1.0.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "cookies" ], "host_permissions": [ "*:\/\/*\/*" ], "action": { "default_popup": "popup.html", "default_icon": "logo.png" }, "icons": { "128": "logo.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "inject.js" ] } ] } |