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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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/ |
عنوان صفحة المساعدة | 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" } ] } |