Font Family Changer for AppsScript

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

Cos'è Font Family Changer for AppsScript?

Font Family Changer for AppsScript è un'estensione di Chrome sviluppata da https://www.y-shinno.com, e la sua funzione principale è "This extension change the font family of the google apps script editor.".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Font Family Changer for AppsScript

Scarica i file di estensione Font Family Changer for AppsScript in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Font Family Changer for AppsScript Font Family Changer for AppsScript
ID lkihlhkelgodpadcphjopombgnlfopbe
URL Ufficiale https://chromewebstore.google.com/detail/font-family-changer-for-a/lkihlhkelgodpadcphjopombgnlfopbe
Descrizione This extension change the font family of the google apps script editor.
Dimensione del File 462 KB
Conteggio Installazioni 310
Versione Corrente 1.0.0
Ultimo Aggiornamento 2018-09-02
Data di Pubblicazione 2018-09-02
Valutazione 3.50/5 Totale 2 Valutazioni
Sviluppatore https://www.y-shinno.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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'"
}