Folder Fixer for Dropbox Paper
Fixes issues with Dropbox Paper's UI
Cos'è Folder Fixer for Dropbox Paper?
Folder Fixer for Dropbox Paper è un'estensione di Chrome sviluppata da Nathan Woltman, e la sua funzione principale è "Fixes issues with Dropbox Paper's UI".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Folder Fixer for Dropbox Paper
Scarica i file di estensione Folder Fixer for Dropbox Paper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | jcdaledljinphjmmdpoikapjnackljii |
URL Ufficiale | https://chrome.google.com/webstore/detail/folder-fixer-for-dropbox/jcdaledljinphjmmdpoikapjnackljii |
Descrizione | Fixes issues with Dropbox Paper's UI |
Dimensione del File | 10.63 KB |
Conteggio Installazioni | 93 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2019-08-05 |
Data di Pubblicazione | 2019-08-05 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Nathan Woltman |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/nwoltman/dropbox-paper-fixer-chrome-extension |
URL della Pagina di Aiuto | https://github.com/nwoltman/dropbox-paper-fixer-chrome-extension/issues |
Lingue Supportate | 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" ] } ] } |