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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.appsscript.it, και η κύρια λειτουργία του είναι "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

Λήψη αρχείου CRX της επέκτασης Apps Script Sortable List Files

Λήψη αρχείων επέκτασης 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"
        }
    ]
}