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" } ] } |