Folder Fixer for Dropbox Paper

Fixes issues with Dropbox Paper's UI

Folder Fixer for Dropbox Paper क्या है?

Folder Fixer for Dropbox Paper Nathan Woltman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fixes issues with Dropbox Paper's UI"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Folder Fixer for Dropbox Paper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Folder Fixer for Dropbox Paper Folder Fixer for Dropbox Paper
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"
            ]
        }
    ]
}