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é es Apps Script Sortable List Files?
Apps Script Sortable List Files es una extensión de Chrome desarrollada por https://www.appsscript.it, y su función principal es "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.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Apps Script Sortable List Files
Descarga archivos de extensión Apps Script Sortable List Files en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Apps Script Sortable List Files |
ID | kfehlfaeeefnnbponboooacmenececcb |
URL Oficial | https://chromewebstore.google.com/detail/apps-script-sortable-list/kfehlfaeeefnnbponboooacmenececcb |
Descripción | 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. |
Tamaño del Archivo | 27.65 KB |
Cantidad de Instalaciones | 1,272 |
Versión Actual | 1.0.2 |
Última Actualización | 2020-01-16 |
Fecha de Publicación | 2020-01-16 |
Calificación | 4.82/5 Total de 11 Calificaciones |
Desarrollador | https://www.appsscript.it |
Tipo de Pago | free |
Sitio Web de la Extensión | http://www.appsscript.it/articoli/estensione-per-chrome-apps-script-sortable-list-files/ |
URL de la Página de Ayuda | http://www.appsscript.it/articoli/estensione-per-chrome-apps-script-sortable-list-files/ |
Idiomas Soportados | 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" } ] } |