Font Size Changer for AppsScript
This extension change the font size of the google apps script editor.
Co to jest Font Size Changer for AppsScript?
Font Size Changer for AppsScript to rozszerzenie Chrome opracowane przez https://www.y-shinno.com, a jego główną funkcją jest „This extension change the font size of the google apps script editor.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Font Size Changer for AppsScript
Pobierz pliki rozszerzeń Font Size 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 size of AppsScript Editor. This makes it possible to comfortably write codes even with laptop computers with high resolution and small screens. For now, this extension provides font sizes from 9px to 32px. In the future, if there are requests from customers, it may increase. Updated : ▼Ver.1.1.0 -Fix the margin-left of the script editor -Fix so that font size change will be applied when opening new file
Podstawowe informacje o rozszerzeniu
Nazwa | Font Size Changer for AppsScript |
ID | lkjeamadaggbfkjiiemgdkamlecpkhpo |
Oficjalny URL | https://chromewebstore.google.com/detail/font-size-changer-for-app/lkjeamadaggbfkjiiemgdkamlecpkhpo |
Opis | This extension change the font size of the google apps script editor. |
Rozmiar pliku | 462 KB |
Liczba instalacji | 1,120 |
Aktualna Wersja | 1.1.0 |
Ostatnia Aktualizacja | 2018-07-06 |
Data Publikacji | 2018-07-06 |
Ocena | 4.67/5 Łącznie 3 Oceny |
Deweloper | https://www.y-shinno.com |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://www.y-shinno.com/gas-font-size-changer/ |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Font Size Changer for AppsScript", "version": "1.1.0", "manifest_version": 2, "description": "This extension change the font size 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'" } |