Folder Fixer for Dropbox Paper
Fixes issues with Dropbox Paper's UI
什麼是Folder Fixer for Dropbox Paper?
Folder Fixer for Dropbox Paper是由Nathan Woltman開發的Chrome擴展程式,該擴展的主要功能是“Fixes issues with Dropbox Paper's UI”。
擴展截圖
下載Folder Fixer for Dropbox Paper擴展crx文件
下載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 |
官方網址 | 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" ] } ] } |