Font Size Changer for AppsScript

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

Font Size Changer for AppsScript là gì?

Font Size Changer for AppsScript là một tiện ích mở rộng Chrome được phát triển bởi https://www.y-shinno.com, và tính năng chính của nó là "This extension change the font size of the google apps script editor.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Font Size Changer for AppsScript

Tải xuống các tệp mở rộng Font Size Changer for AppsScript dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Font Size Changer for AppsScript Font Size Changer for AppsScript
ID lkjeamadaggbfkjiiemgdkamlecpkhpo
URL Chính Thức https://chromewebstore.google.com/detail/font-size-changer-for-app/lkjeamadaggbfkjiiemgdkamlecpkhpo
Mô tả This extension change the font size of the google apps script editor.
Kích Thước Tệp 462 KB
Số Lần Cài Đặt 1,120
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2018-07-06
Ngày Phát Hành 2018-07-06
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://www.y-shinno.com
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://www.y-shinno.com/gas-font-size-changer/
Ngôn Ngữ Được Hỗ Trợ 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'"
}