Font Size Changer for AppsScript
This extension change the font size of the google apps script editor.
What is Font Size Changer for AppsScript?
Font Size Changer for AppsScript is a Chrome extension developed by https://www.y-shinno.com, and its main feature is "This extension change the font size of the google apps script editor.".
Extension Screenshots
Download Font Size Changer for AppsScript Extension CRX File
Download Font Size Changer for AppsScript extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Font Size Changer for AppsScript |
ID | lkjeamadaggbfkjiiemgdkamlecpkhpo |
Official URL | https://chromewebstore.google.com/detail/font-size-changer-for-app/lkjeamadaggbfkjiiemgdkamlecpkhpo |
Description | This extension change the font size of the google apps script editor. |
File Size | 462 KB |
Installation Count | 1,120 |
Current Version | 1.1.0 |
Last Updated | 2018-07-06 |
Publish Date | 2018-07-06 |
Rating | 4.67/5 Total 3 Ratings |
Developer | https://www.y-shinno.com |
[email protected] | |
Payment Type | free |
Help Page URL | https://www.y-shinno.com/gas-font-size-changer/ |
Supported Languages | 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'" } |