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.
Qu'est-ce que Apps Script Sortable List Files ?
Apps Script Sortable List Files est une extension Chrome développée par https://www.appsscript.it, et sa fonction principale est "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.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Apps Script Sortable List Files
Téléchargez les fichiers d'extension Apps Script Sortable List Files au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Apps Script Sortable List Files |
ID | kfehlfaeeefnnbponboooacmenececcb |
URL Officiel | https://chromewebstore.google.com/detail/apps-script-sortable-list/kfehlfaeeefnnbponboooacmenececcb |
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. |
Taille du Fichier | 27.65 KB |
Nombre d'Installations | 1,272 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2020-01-16 |
Date de Publication | 2020-01-16 |
Évaluation | 4.82/5 Total 11 Évaluations |
Développeur | https://www.appsscript.it |
Type de Paiement | free |
Site Web de l'Extension | http://www.appsscript.it/articoli/estensione-per-chrome-apps-script-sortable-list-files/ |
URL de la Page d'Aide | http://www.appsscript.it/articoli/estensione-per-chrome-apps-script-sortable-list-files/ |
Langues Prises en Charge | 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" } ] } |