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.".
Снимки экрана расширения
Скачать файл 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 |
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" } ] } |