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.
Wat is Apps Script Sortable List Files?
Apps Script Sortable List Files is een Chrome-extensie ontwikkeld door https://www.appsscript.it, en de belangrijkste functie is "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.".
Extensie Screenshots
Download het CRX-bestand van de extensie Apps Script Sortable List Files
Download Apps Script Sortable List Files-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Apps Script Sortable List Files |
ID | kfehlfaeeefnnbponboooacmenececcb |
Officiële URL | https://chromewebstore.google.com/detail/apps-script-sortable-list/kfehlfaeeefnnbponboooacmenececcb |
Beschrijving | 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. |
Bestandsgrootte | 27.65 KB |
Aantal Installaties | 1,272 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2020-01-16 |
Publicatiedatum | 2020-01-16 |
Beoordeling | 4.82/5 Totaal 11 Beoordelingen |
Ontwikkelaar | https://www.appsscript.it |
Betalingswijze | free |
Extensiewebsite | http://www.appsscript.it/articoli/estensione-per-chrome-apps-script-sortable-list-files/ |
Help Pagina-URL | http://www.appsscript.it/articoli/estensione-per-chrome-apps-script-sortable-list-files/ |
Ondersteunde Talen | 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" } ] } |