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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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 फ़ाइल डाउनलोड करें
crx प्रारूप में Apps Script Sortable List Files एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/ |
सहायता पृष्ठ 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" } ] } |