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是由Rubén Sánchez開發的Chrome擴展程式,該擴展的主要功能是“It is an extension that adds functionalities to the new development environment of Google Apps Script”。
擴展截圖
下載Google Apps Script Tools擴展crx文件
下載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 |
官方網址 | 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": [ " |