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 |
官方網址 | 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'" } |