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.

Apa itu Apps Script Sortable List Files?

Apps Script Sortable List Files adalah ekstensi Chrome yang dikembangkan oleh https://www.appsscript.it, dan fitur utamanya adalah "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 Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Apps Script Sortable List Files

Unduh file ekstensi Apps Script Sortable List Files dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Apps Script Sortable List Files Apps Script Sortable List Files
ID kfehlfaeeefnnbponboooacmenececcb
URL Resmi https://chromewebstore.google.com/detail/apps-script-sortable-list/kfehlfaeeefnnbponboooacmenececcb
Deskripsi 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.
Ukuran File 27.65 KB
Jumlah Instalasi 1,272
Versi Saat Ini 1.0.2
Terakhir Diperbarui 2020-01-16
Tanggal Publikasi 2020-01-16
Penilaian 4.82/5 Total 11 Penilaian
Pengembang https://www.appsscript.it
Tipe Pembayaran free
Situs Ekstensi http://www.appsscript.it/articoli/estensione-per-chrome-apps-script-sortable-list-files/
URL Halaman Bantuan http://www.appsscript.it/articoli/estensione-per-chrome-apps-script-sortable-list-files/
Bahasa yang Didukung 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"
        }
    ]
}