Apps Script Sortable List Files

This extension for Google Apps Script allows you to change the order of the tabs and files in the main editor and in the sidebar.

Apps Script Sortable List Files란 무엇입니까?

Apps Script Sortable List Files은(는) https://www.appsscript.it에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension for Google Apps Script allows you to change the order of the tabs and files in the main editor and in the sidebar."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Apps Script Sortable List Files 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension for Google Apps Script allows you to change the order of the tabs in the main editor and the order of the files in the scripts sidebar.
Using simple drag & drop with the mouse you can quickly sort the files and tabs.
After sorting, even if you refresh the page or open your scripts later, you will find the files and tabs opened and sorted as you left them the last time.
For more information visit www.appsscript.it                    

확장 프로그램 기본 정보

이름 Apps Script Sortable List Files Apps Script Sortable List Files
ID kfehlfaeeefnnbponboooacmenececcb
공식 URL https://chromewebstore.google.com/detail/apps-script-sortable-list/kfehlfaeeefnnbponboooacmenececcb
설명 This extension for Google Apps Script allows you to change the order of the tabs and files in the main editor and in the sidebar.
파일 크기 27.65 KB
설치 횟수 1,272
현재 버전 1.0.2
최근 업데이트 2020-01-16
출시 날짜 2020-01-16
평점 4.82/5 총 11 개의 평점
개발자 https://www.appsscript.it
결제 유형 free
확장 프로그램 웹 사이트 http://www.appsscript.it/articoli/estensione-per-chrome-apps-script-sortable-list-files/
도움말 페이지 URL http://www.appsscript.it/articoli/estensione-per-chrome-apps-script-sortable-list-files/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Apps Script Sortable List Files",
    "description": "This extension for Google Apps Script allows you to change the order of the tabs and files in the main editor and in the sidebar.",
    "version": "1.0.2",
    "browser_action": {
        "default_icon": "AppsScriptSortableListFiles-32.png"
    },
    "icons": {
        "16": "AppsScriptSortableListFiles-16.png",
        "48": "AppsScriptSortableListFiles-48.png",
        "128": "AppsScriptSortableListFiles-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/script.google.com\/*"
            ],
            "js": [
                "Sortable.js",
                "sortableListFiles.min.js"
            ],
            "run_at": "document_end"
        }
    ]
}