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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension change the font size of the google apps script editor."।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Font Size Changer for AppsScript एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}