OPFS Explorer
OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application.
OPFS Explorerคืออะไร?
OPFS Explorer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://tomayac.com และคุณลักษณะหลักของมันคือ "OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย OPFS Explorer
ดาวน์โหลดไฟล์ส่วนขยาย OPFS Explorer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS, https://fs.spec.whatwg.org/) of a web application. To use it, open Chrome DevTools and click on the OPFS Explorer tab. The extension will automatically analyze the OPFS of the current web application and display the file hierarchy. You can then click on any file to download its contents or delete the file (which may fail if the file is locked). Note that deleting files may cause the application to break. You can test the extension on the demo page (https://tomayac.github.io/opfs-explorer/). The source code is on GitHub (https://github.com/tomayac/opfs-explorer).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | OPFS Explorer |
ID | acndjpgkpaclldomagafnognkcgjignd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/opfs-explorer/acndjpgkpaclldomagafnognkcgjignd |
คำอธิบาย | OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application. |
ขนาดไฟล์ | 15.03 KB |
จำนวนการติดตั้ง | 2,715 |
เวอร์ชันปัจจุบัน | 1.6.1 |
อัปเดตครั้งล่าสุด | 2024-01-11 |
วันที่เผยแพร่ | 2022-11-07 |
คะแนน | 4.63/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | https://tomayac.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/tomayac/opfs-explorer |
URL หน้าช่วยเหลือ | https://github.com/tomayac/opfs-explorer/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://raw.githubusercontent.com/tomayac/blogccasion/master/privacy-policy.txt |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OPFS Explorer", "description": "OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application.", "manifest_version": 3, "version": "1.6.1", "devtools_page": "devtools.html", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/localhost\/*", "http:\/\/0.0.0.0\/*", "http:\/\/127.0.0.1\/*" ], "run_at": "document_idle", "js": [ "contentscript.js" ] } ], "background": { "service_worker": "serviceworker.js" }, "icons": { "48": "icon48.png", "128": "icon128.png" } } |