Font Family Changer for AppsScript

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

Qu'est-ce que Font Family Changer for AppsScript ?

Font Family 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 family of the google apps script editor.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Font Family Changer for AppsScript

Téléchargez les fichiers d'extension Font Family 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 family of AppsScript Editor.

With this extension, you can use monospaced fonts with Apps Script Editor that are ideal for coding selected from Google Fonts.                    

Informations de Base sur l'Extension

Nom Font Family Changer for AppsScript Font Family Changer for AppsScript
ID lkihlhkelgodpadcphjopombgnlfopbe
URL Officiel https://chromewebstore.google.com/detail/font-family-changer-for-a/lkihlhkelgodpadcphjopombgnlfopbe
Description This extension change the font family of the google apps script editor.
Taille du Fichier 462 KB
Nombre d'Installations 310
Version Actuelle 1.0.0
Dernière Mise à Jour 2018-09-02
Date de Publication 2018-09-02
Évaluation 3.50/5 Total 2 Évaluations
Développeur https://www.y-shinno.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Font Family Changer for AppsScript",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "This extension change the font family 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'"
}