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ファイルをダウンロード

Apps Script Sortable List Files拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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