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是由https://www.appsscript.it開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載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 |
官方網址 | 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" } ] } |