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」です。

拡張機能のスクリーンショット

screenshot

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.                    

拡張機能の基本情報

名前 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"
            ]
        }
    ]
}