Font Size Changer for AppsScript
This extension change the font size of the google apps script editor.
什么是Font Size Changer for AppsScript?
Font Size Changer for AppsScript是由https://www.y-shinno.com开发的Chrome扩展程序,该扩展的主要功能是“This extension change the font size of the google apps script editor.”。
扩展截图
下载Font Size Changer for AppsScript扩展crx文件
下载Font Size Changer for AppsScript扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows developers to change the font size of AppsScript Editor. This makes it possible to comfortably write codes even with laptop computers with high resolution and small screens. For now, this extension provides font sizes from 9px to 32px. In the future, if there are requests from customers, it may increase. Updated : ▼Ver.1.1.0 -Fix the margin-left of the script editor -Fix so that font size change will be applied when opening new file
扩展基本信息
名称 | Font Size Changer for AppsScript |
ID | lkjeamadaggbfkjiiemgdkamlecpkhpo |
官方URL | https://chromewebstore.google.com/detail/font-size-changer-for-app/lkjeamadaggbfkjiiemgdkamlecpkhpo |
简介 | This extension change the font size of the google apps script editor. |
文件大小 | 462 KB |
安装次数 | 1,120 |
当前版本 | 1.1.0 |
更新时间 | 2018-07-06 |
上架时间 | 2018-07-06 |
评分 | 4.67/5 共3次评分 |
开发者 | https://www.y-shinno.com |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://www.y-shinno.com/gas-font-size-changer/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Font Size Changer for AppsScript", "version": "1.1.0", "manifest_version": 2, "description": "This extension change the font size 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'" } |