Excalisave
Save your excalidraw drawings.
Excalisaveคืออะไร?
Excalisave เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Atharva Kadlag และคุณลักษณะหลักของมันคือ "Save your excalidraw drawings."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Excalisave
ดาวน์โหลดไฟล์ส่วนขยาย Excalisave ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Excalidraw is an awesome tool for creating diagrams, sketches, and other visual representations of your ideas. However, it has one limitation - it only allows you to work on one drawing at a time. If you want to save your work and start a new drawing, you need to copy and paste the image, or download it to your device. That's where Excalisave comes in! This extension makes it easy to save your Excalidraw drawings with just one click. You no longer have to worry about losing your work or cluttering your computer with multiple image files. With Excalisave, you can store your drawings in the browser storage and access them later whenever you need them. Here are some key features of Excalisave: 1. One-click saving: Save your Excalidraw drawings with just one click. No need to copy and paste or download the image. 2. Browser storage: Store your drawings in the browser storage. Your drawings are safe and accessible even if you close the Excalidraw tab or restart your computer. 4. Easy retrieval: Access your saved drawings easily from the Excalisave menu. You can preview the image, delete it, or open it in a new tab. 5. Multiple drawings: Save as many drawings as you want. You can organize them by name and date, or search for a specific drawing using keywords. 6. User-friendly interface: Excalisave has a simple and intuitive interface. You don't need any technical skills to use it. 7. How to use Excalisave: Install the extension from the Chrome Web Store. Open Excalidraw and create your drawing. Click on the Excalisave icon in the browser toolbar. Choose a name for your drawing (optional). Click "Save" to save your drawing in the browser storage. To access your saved drawings, click on the Excalisave icon and select "Open Saved Drawings". From the menu, you can preview, delete, or open your drawings in a new tab. That's it! With Excalisave, you can enjoy the full benefits of Excalidraw without any limitations. Try it out today and let us know what you think.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Excalisave |
ID | obnjfbgikjcdfnbnmdamffacjfpankih |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/excalisave/obnjfbgikjcdfnbnmdamffacjfpankih |
คำอธิบาย | Save your excalidraw drawings. |
ขนาดไฟล์ | 2.83 MB |
จำนวนการติดตั้ง | 427 |
เวอร์ชันปัจจุบัน | 2.0.0 |
อัปเดตครั้งล่าสุด | 2023-11-18 |
วันที่เผยแพร่ | 2023-03-23 |
คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Atharva Kadlag |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/atharvakadlag/excalisave |
URL หน้าช่วยเหลือ | https://github.com/atharvakadlag/excalisave |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Excalisave", "version": "2.0.0", "short_name": "Excalisave", "description": "Save your excalidraw drawings.", "icons": { "16": "assets\/icons\/16.png", "48": "assets\/icons\/48.png", "128": "assets\/icons\/128.png" }, "homepage_url": "https:\/\/github.com\/atharvakadlag\/excalisave", "permissions": [ "activeTab", "tabs", "storage", "scripting", "unlimitedStorage" ], "author": "atharvakadlag", "minimum_chrome_version": "88", "action": { "default_title": "Excalisave", "default_popup": "popup.html" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" } } }, "background": { "service_worker": "js\/background.bundle.js" }, "web_accessible_resources": [ { "resources": [ "assets\/*" ], "matches": [ "https:\/\/excalidraw.com\/*" ] } ], "host_permissions": [ "https:\/\/excalidraw.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/excalidraw.com\/*" ], "js": [ "libs\/react.production.min.js", "libs\/react-dom.production.min.js", "libs\/excalidraw.production.min.js", "js\/content-scripts\/listenDrawingUpdates.bundle.js" ] } ] } |