Font Family Changer for AppsScript

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

Vad är Font Family Changer for AppsScript?

Font Family Changer for AppsScript är en Chrome-tillägg utvecklad av https://www.y-shinno.com, och dess huvudfunktion är "This extension change the font family of the google apps script editor.".

Tilläggsskärmbilder

Ladda ner Font Family Changer for AppsScript-förlängningens CRX-fil

Ladda ner Font Family Changer for AppsScript-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Font Family Changer for AppsScript Font Family Changer for AppsScript
ID lkihlhkelgodpadcphjopombgnlfopbe
Officiell webbadress https://chromewebstore.google.com/detail/font-family-changer-for-a/lkihlhkelgodpadcphjopombgnlfopbe
Beskrivning This extension change the font family of the google apps script editor.
Filstorlek 462 KB
Antal Installationer 310
Aktuell Version 1.0.0
Senast Uppdaterad 2018-09-02
Publiceringsdatum 2018-09-02
Betyg 3.50/5 Totalt 2 Betyg
Utvecklare https://www.y-shinno.com
E-post [email protected]
Betalningssätt free
Stödda Språk 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'"
}