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.
Was ist Apps Script Sortable List Files?
Apps Script Sortable List Files ist eine Chrome-Erweiterung, die von https://www.appsscript.it entwickelt wurde, und ihr Hauptmerkmal ist "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.".
Erweiterungsscreenshots
Apps Script Sortable List Files-Erweiterungs-CRX-Datei herunterladen
Laden Sie Apps Script Sortable List Files-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Apps Script Sortable List Files |
ID | kfehlfaeeefnnbponboooacmenececcb |
Offizielle URL | https://chromewebstore.google.com/detail/apps-script-sortable-list/kfehlfaeeefnnbponboooacmenececcb |
Beschreibung | 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. |
Dateigröße | 27.65 KB |
Installationsanzahl | 1,272 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2020-01-16 |
Veröffentlichungsdatum | 2020-01-16 |
Bewertung | 4.82/5 Insgesamt 11 Bewertungen |
Entwickler | https://www.appsscript.it |
Zahlungsart | free |
Erweiterungswebsite | http://www.appsscript.it/articoli/estensione-per-chrome-apps-script-sortable-list-files/ |
Hilfeseite URL | http://www.appsscript.it/articoli/estensione-per-chrome-apps-script-sortable-list-files/ |
Unterstützte Sprachen | 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" } ] } |