Font Size Changer for AppsScript
This extension change the font size of the google apps script editor.
Что такое Font Size Changer for AppsScript?
Font Size Changer for AppsScript - это расширение Chrome, разработанное https://www.y-shinno.com, и его основная функция - "This extension change the font size of the google apps script editor.".
Снимки экрана расширения
Скачать файл CRX расширения Font Size Changer for AppsScript
Скачайте файлы расширений Font Size Changer for AppsScript в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Font Size Changer for AppsScript |
ID | lkjeamadaggbfkjiiemgdkamlecpkhpo |
Официальный URL | https://chromewebstore.google.com/detail/font-size-changer-for-app/lkjeamadaggbfkjiiemgdkamlecpkhpo |
Описание | This extension change the font size of the google apps script editor. |
Размер файла | 462 KB |
Количество установок | 1,120 |
Текущая Версия | 1.1.0 |
Последнее Обновление | 2018-07-06 |
Дата публикации | 2018-07-06 |
Рейтинг | 4.67/5 Всего 3 оценок |
Разработчик | https://www.y-shinno.com |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://www.y-shinno.com/gas-font-size-changer/ |
Поддерживаемые языки | 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'" } |