Font Size Changer for AppsScript
This extension change the font size of the google apps script editor.
O que é Font Size Changer for AppsScript?
Font Size Changer for AppsScript é uma extensão do Chrome desenvolvida por https://www.y-shinno.com, e sua principal característica é "This extension change the font size of the google apps script editor.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Font Size Changer for AppsScript
Baixe arquivos de extensão Font Size Changer for AppsScript no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Font Size Changer for AppsScript |
ID | lkjeamadaggbfkjiiemgdkamlecpkhpo |
URL Oficial | https://chromewebstore.google.com/detail/font-size-changer-for-app/lkjeamadaggbfkjiiemgdkamlecpkhpo |
Descrição | This extension change the font size of the google apps script editor. |
Tamanho do Arquivo | 462 KB |
Contagem de Instalações | 1,120 |
Versão Atual | 1.1.0 |
Última Atualização | 2018-07-06 |
Data de Publicação | 2018-07-06 |
Classificação | 4.67/5 Total de 3 Avaliações |
Desenvolvedor | https://www.y-shinno.com |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://www.y-shinno.com/gas-font-size-changer/ |
Idiomas Suportados | 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'" } |