Font Family Changer for AppsScript

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

Co to jest Font Family Changer for AppsScript?

Font Family Changer for AppsScript to rozszerzenie Chrome opracowane przez https://www.y-shinno.com, a jego główną funkcją jest „This extension change the font family of the google apps script editor.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Font Family Changer for AppsScript

Pobierz pliki rozszerzeń Font Family Changer for AppsScript w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Font Family Changer for AppsScript Font Family Changer for AppsScript
ID lkihlhkelgodpadcphjopombgnlfopbe
Oficjalny URL https://chromewebstore.google.com/detail/font-family-changer-for-a/lkihlhkelgodpadcphjopombgnlfopbe
Opis This extension change the font family of the google apps script editor.
Rozmiar pliku 462 KB
Liczba instalacji 310
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2018-09-02
Data Publikacji 2018-09-02
Ocena 3.50/5 Łącznie 2 Oceny
Deweloper https://www.y-shinno.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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'"
}