Font Size Changer for AppsScript
This extension change the font size of the google apps script editor.
Qu'est-ce que Font Size Changer for AppsScript ?
Font Size Changer for AppsScript est une extension Chrome développée par https://www.y-shinno.com, et sa fonction principale est "This extension change the font size of the google apps script editor.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Font Size Changer for AppsScript
Téléchargez les fichiers d'extension Font Size Changer for AppsScript au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Font Size Changer for AppsScript |
ID | lkjeamadaggbfkjiiemgdkamlecpkhpo |
URL Officiel | https://chromewebstore.google.com/detail/font-size-changer-for-app/lkjeamadaggbfkjiiemgdkamlecpkhpo |
Description | This extension change the font size of the google apps script editor. |
Taille du Fichier | 462 KB |
Nombre d'Installations | 1,120 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2018-07-06 |
Date de Publication | 2018-07-06 |
Évaluation | 4.67/5 Total 3 Évaluations |
Développeur | https://www.y-shinno.com |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://www.y-shinno.com/gas-font-size-changer/ |
Langues Prises en Charge | 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'" } |