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은(는) https://www.y-shinno.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension change the font size of the google apps script editor."입니다.

확장 프로그램 스크린샷

Font Size Changer for AppsScript 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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'"
}