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