Google Apps Script Tools
It is an extension that adds functionalities to the new development environment of Google Apps Script
What is Google Apps Script Tools?
Google Apps Script Tools is a Chrome extension developed by Rubén Sánchez, and its main feature is "It is an extension that adds functionalities to the new development environment of Google Apps Script".
Extension Screenshots
Download Google Apps Script Tools Extension CRX File
Download Google Apps Script Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Google Apps Script Tools |
ID | iigobcdpmngdgiacebgenbccmdacnjhp |
Official URL | https://chromewebstore.google.com/detail/google-apps-script-tools/iigobcdpmngdgiacebgenbccmdacnjhp |
Description | It is an extension that adds functionalities to the new development environment of Google Apps Script |
File Size | 97.94 KB |
Installation Count | 4,408 |
Current Version | 0.0.2 |
Last Updated | 2022-04-09 |
Publish Date | 2022-04-06 |
Rating | 4.00/5 Total 8 Ratings |
Developer | Rubén Sánchez |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/rubendariosanchez/Gas-Tools |
Supported Languages | 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": [ " |