Black Apps Script
This extension brings new functionality to the Google Apps Script Monaco Editor
什么是Black Apps Script?
Black Apps Script是由https://swroot.com开发的Chrome扩展程序,该扩展的主要功能是“This extension brings new functionality to the Google Apps Script Monaco Editor”。
扩展截图
下载Black Apps Script扩展crx文件
下载Black Apps Script扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Search globally - now with hotkeys! Peek, find all references and goto definition now works across multiple files Choose the theme that suits you best or use your own Hide extra elements Apply styles for the outer panels Manage loads of editor options Use pre-defined snippets and compose yours Diff Editor - side by side live comparison Try a new editor that uses VS Code TextMate grammars as the syntax tokenization engine Take care and enjoy coding 😌
扩展基本信息
名称 | Black Apps Script |
ID | lobpcflajoikohefjjdndofbfikadpfb |
官方URL | https://chromewebstore.google.com/detail/black-apps-script/lobpcflajoikohefjjdndofbfikadpfb |
简介 | This extension brings new functionality to the Google Apps Script Monaco Editor |
文件大小 | 4.91 MB |
安装次数 | 3,277 |
当前版本 | 1.0.16 |
更新时间 | 2024-01-20 |
上架时间 | 2022-04-21 |
评分 | 4.96/5 共24次评分 |
开发者 | https://swroot.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.swroot.com/black-script |
帮助页面URL | https://www.swroot.com/black-script |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Black Apps Script", "description": "This extension brings new functionality to the Google Apps Script Monaco Editor", "version": "1.0.16", "icons": { "128": "128.png" }, "content_scripts": [ { "matches": [ "https:\/\/script.google.com\/*" ], "js": [ "inject.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "scripting" ], "web_accessible_resources": [ { "resources": [ "embed.js", "textmate\/*" ], "matches": [ "https:\/\/script.google.com\/*" ], "extension_ids": [] } ], "host_permissions": [ "https:\/\/script.google.com\/*" ], "homepage_url": "https:\/\/www.swroot.com\/black-script", "action": { "default_title": "Black Apps Script options", "default_icon": "128.png", "default_popup": "index.html" }, "sandbox": { "pages": [ "textmate\/index.html" ] }, "content_security_policy": { "sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self'; script-src-elem 'self' data: blob:; worker-src 'self' data: blob:; object-src 'self'" }, "manifest_version": 3 } |