Just Save
A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links.
Just Saveคืออะไร?
Just Save เป็นส่วนขยายของ Chrome ที่พัฒนาโดย me และคุณลักษณะหลักของมันคือ "A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Just Save
ดาวน์โหลดไฟล์ส่วนขยาย Just Save ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Just Save is a simple WebExtension for skipping the "Save As" dialog when saving images, pages and links. Just Save adds a single item to your context menu that saves the clicked image, link, or page immediately to your default downloads folder, without requiring any additional input. Currently, Just Saved is available on both Firefox (https://addons.mozilla.org/en-US/firefox/addon/just-save/) and Chrome (https://chrome.google.com/webstore/detail/plaggkdohpgdahkidgjmbhafnbbacpno), with support for other browsers planned. Just Save is built on top of the WebExtensions API, which means it can work across multiple browsers and will remain compatible with Firefox even after XUL-based addons become deprecated. Just Save is completely free and open-source. Feel free to visit the GitHub repo (https://github.com/lewisl9029/just-save-webextension) if you'd like to see the source code, report an issue, or contribute changes.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Just Save |
ID | plaggkdohpgdahkidgjmbhafnbbacpno |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/just-save/plaggkdohpgdahkidgjmbhafnbbacpno |
คำอธิบาย | A simple WebExtension for skipping the "Save As" dialog when saving images, pages and links. |
ขนาดไฟล์ | 15.02 KB |
จำนวนการติดตั้ง | 3,652 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2016-04-30 |
วันที่เผยแพร่ | 2016-04-29 |
คะแนน | 4.43/5 รวมทั้งหมด 21 คะแนน |
ผู้พัฒนา | me |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/lewisl9029/just-save-webextension |
URL หน้าช่วยเหลือ | https://github.com/lewisl9029/just-save-webextension |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Just Save", "version": "0.0.2", "description": "A simple WebExtension for skipping the \"Save As\" dialog when saving images, pages and links.", "icons": { "48": "icons\/just-save-48.png", "96": "icons\/just-save-96.png" }, "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "45.0" } }, "background": { "persistent": false, "scripts": [ "just-save.js" ] }, "permissions": [ "contextMenus", "downloads" ] } |