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": [ " |