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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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