Font Family Changer for AppsScript
This extension change the font family of the google apps script editor.
什么是Font Family Changer for AppsScript?
Font Family Changer for AppsScript是由https://www.y-shinno.com开发的Chrome扩展程序,该扩展的主要功能是“This extension change the font family of the google apps script editor.”。
扩展截图
下载Font Family Changer for AppsScript扩展crx文件
下载Font Family Changer for AppsScript扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows developers to change the font family of AppsScript Editor. With this extension, you can use monospaced fonts with Apps Script Editor that are ideal for coding selected from Google Fonts.
扩展基本信息
名称 | Font Family Changer for AppsScript |
ID | lkihlhkelgodpadcphjopombgnlfopbe |
官方URL | https://chromewebstore.google.com/detail/font-family-changer-for-a/lkihlhkelgodpadcphjopombgnlfopbe |
简介 | This extension change the font family of the google apps script editor. |
文件大小 | 462 KB |
安装次数 | 310 |
当前版本 | 1.0.0 |
更新时间 | 2018-09-02 |
上架时间 | 2018-09-02 |
评分 | 3.50/5 共2次评分 |
开发者 | https://www.y-shinno.com |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Font Family Changer for AppsScript", "version": "1.0.0", "manifest_version": 2, "description": "This extension change the font family of the google apps script editor.", "content_scripts": [ { "matches": [ "https:\/\/script.google.com\/*" ], "js": [ "\/node_modules\/jquery\/dist\/jquery.min.js", "script.js" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ajax.googleapis.com\/ ; object-src 'self'" } |