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 là gì?

Apps Script Sortable List Files là một tiện ích mở rộng Chrome được phát triển bởi https://www.appsscript.it, và tính năng chính của nó là "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.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Apps Script Sortable List Files

Tải xuống các tệp mở rộng Apps Script Sortable List Files dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Apps Script Sortable List Files Apps Script Sortable List Files
ID kfehlfaeeefnnbponboooacmenececcb
URL Chính Thức https://chromewebstore.google.com/detail/apps-script-sortable-list/kfehlfaeeefnnbponboooacmenececcb
Mô tả 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.
Kích Thước Tệp 27.65 KB
Số Lần Cài Đặt 1,272
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2020-01-16
Ngày Phát Hành 2020-01-16
Đánh Giá 4.82/5 Tổng số 11 Đánh Giá
Nhà Phát Triển https://www.appsscript.it
Loại Thanh Toán free
Trang Web Mở Rộng http://www.appsscript.it/articoli/estensione-per-chrome-apps-script-sortable-list-files/
URL Trang Trợ Giúp http://www.appsscript.it/articoli/estensione-per-chrome-apps-script-sortable-list-files/
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}