Google Apps Script Tools
It is an extension that adds functionalities to the new development environment of Google Apps Script
Τι είναι το Google Apps Script Tools;
Το Google Apps Script Tools είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rubén Sánchez, και η κύρια λειτουργία του είναι "It is an extension that adds functionalities to the new development environment of Google Apps Script".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Google Apps Script Tools
Λήψη αρχείων επέκτασης Google Apps Script Tools σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
It is an extension that adds functionalities to the new development environment of Google Apps Script, below the new aggregate functionalities are displayed: - Allows you to select themes for the editor - Allows you to show or hide the file panel - Allows you to search for words in several files (in the following version it will show the name of the file) - Activate or deactivate the line wrap
Βασικές Πληροφορίες Επέκτασης
Όνομα | Google Apps Script Tools |
ID | iigobcdpmngdgiacebgenbccmdacnjhp |
Επίσημο URL | https://chromewebstore.google.com/detail/google-apps-script-tools/iigobcdpmngdgiacebgenbccmdacnjhp |
Περιγραφή | It is an extension that adds functionalities to the new development environment of Google Apps Script |
Μέγεθος Αρχείου | 97.94 KB |
Αριθμός Εγκαταστάσεων | 4,408 |
Τρέχουσα Έκδοση | 0.0.2 |
Τελευταία Ενημέρωση | 2022-04-09 |
Ημερομηνία Δημοσίευσης | 2022-04-06 |
Αξιολόγηση | 4.00/5 Συνολικά 8 Αξιολογήσεις |
Προγραμματιστής | Rubén Sánchez |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/rubendariosanchez/Gas-Tools |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Apps Script Tools", "version": "0.0.2", "manifest_version": 3, "author": "Rub\u00e9n S\u00e1nchez", "description": "It is an extension that adds functionalities to the new development environment of Google Apps Script", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/script.google.com\/home\/projects\/*\/edit*" ], "js": [ "js\/mainFunctions.js" ], "all_frames": false, "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "html\/optionToogle.html", "html\/optionWrapLine.html", "html\/themeList.html", "css\/gasToolsStyle.css", "html\/modalSearch.html", "js\/gasTools.js", "js\/library.js", "js\/popover.js", "themes\/*" ], "matches": [ " |