Font Family Changer for AppsScript

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

Wat is Font Family Changer for AppsScript?

Font Family Changer for AppsScript is een Chrome-extensie ontwikkeld door https://www.y-shinno.com, en de belangrijkste functie is "This extension change the font family of the google apps script editor.".

Extensie Screenshots

Download het CRX-bestand van de extensie Font Family Changer for AppsScript

Download Font Family Changer for AppsScript-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Font Family Changer for AppsScript Font Family Changer for AppsScript
ID lkihlhkelgodpadcphjopombgnlfopbe
Officiële URL https://chromewebstore.google.com/detail/font-family-changer-for-a/lkihlhkelgodpadcphjopombgnlfopbe
Beschrijving This extension change the font family of the google apps script editor.
Bestandsgrootte 462 KB
Aantal Installaties 310
Huidige Versie 1.0.0
Laatst Bijgewerkt 2018-09-02
Publicatiedatum 2018-09-02
Beoordeling 3.50/5 Totaal 2 Beoordelingen
Ontwikkelaar https://www.y-shinno.com
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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'"
}