Folder Fixer for Dropbox Paper
Fixes issues with Dropbox Paper's UI
Folder Fixer for Dropbox Paperคืออะไร?
Folder Fixer for Dropbox Paper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nathan Woltman และคุณลักษณะหลักของมันคือ "Fixes issues with Dropbox Paper's UI"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Folder Fixer for Dropbox Paper
ดาวน์โหลดไฟล์ส่วนขยาย Folder Fixer for Dropbox Paper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Fixes the ordering of documents and folders in Dropbox Paper's file explorer. When the "Alphabetical" tab is selected, folders are grouped together and displayed before documents. ================================== Disclaimer: This Chrome extension has no affiliations with the popular file hosting service "Dropbox". Dropbox does not endorse or sponsor this Chrome extension. This Chrome extension is not owned by, is not licensed by, and is not a subsidiary of Dropbox Inc. The content of this Chrome extension is not supplied or reviewed by Dropbox Inc. Dropbox™ and Dropbox Paper™ are trademarks of Dropbox Inc., registered in the U.S. and other countries. This is an independent project developed by me and has no relationship to Dropbox Inc.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | jcdaledljinphjmmdpoikapjnackljii |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/folder-fixer-for-dropbox/jcdaledljinphjmmdpoikapjnackljii |
คำอธิบาย | Fixes issues with Dropbox Paper's UI |
ขนาดไฟล์ | 10.63 KB |
จำนวนการติดตั้ง | 93 |
เวอร์ชันปัจจุบัน | 1.1.0 |
อัปเดตครั้งล่าสุด | 2019-08-05 |
วันที่เผยแพร่ | 2019-08-05 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Nathan Woltman |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/nwoltman/dropbox-paper-fixer-chrome-extension |
URL หน้าช่วยเหลือ | https://github.com/nwoltman/dropbox-paper-fixer-chrome-extension/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Folder Fixer for Dropbox Paper", "version": "1.1.0", "description": "Fixes issues with Dropbox Paper's UI", "icons": { "128": "icon.png" }, "page_action": { "default_icon": "icon.png" }, "permissions": [ "declarativeContent" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/paper.dropbox.com\/*" ], "run_at": "document_idle", "js": [ "content-scripts\/group-folder-items.js" ] } ] } |