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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}