Font Size Changer for AppsScript

This extension change the font size of the google apps script editor.

¿Qué es Font Size Changer for AppsScript?

Font Size Changer for AppsScript es una extensión de Chrome desarrollada por https://www.y-shinno.com, y su función principal es "This extension change the font size of the google apps script editor.".

Capturas de Pantalla de la Extensión

Descargar Archivo CRX de la Extensión Font Size Changer for AppsScript

Descarga archivos de extensión Font Size Changer for AppsScript en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Font Size Changer for AppsScript Font Size Changer for AppsScript
ID lkjeamadaggbfkjiiemgdkamlecpkhpo
URL Oficial https://chromewebstore.google.com/detail/font-size-changer-for-app/lkjeamadaggbfkjiiemgdkamlecpkhpo
Descripción This extension change the font size of the google apps script editor.
Tamaño del Archivo 462 KB
Cantidad de Instalaciones 1,120
Versión Actual 1.1.0
Última Actualización 2018-07-06
Fecha de Publicación 2018-07-06
Calificación 4.67/5 Total de 3 Calificaciones
Desarrollador https://www.y-shinno.com
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://www.y-shinno.com/gas-font-size-changer/
Idiomas Soportados 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'"
}