Font Localization for Google Fonts

Forces glyph rendering for a specific language in Google Fonts.

ما هو Font Localization for Google Fonts؟

Font Localization for Google Fonts هو إضافة Chrome تم تطويرها بواسطة Hristiyan Dodov، والميزة الرئيسية لها هي "Forces glyph rendering for a specific language in Google Fonts.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Font Localization for Google Fonts

قم بتنزيل ملفات الامتداد Font Localization for Google Fonts بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Open Google Fonts, click the extension icon, and select a language. Then, fonts shown will be forced to render glyphs specific to the chosen language, if they have such.

Note that some fonts may not have localized glyphs. In that case, they will render the default glyphs for that script.                    

معلومات أساسية عن التمديد

الاسم Font Localization for Google Fonts Font Localization for Google Fonts
ID eeapanaandeeaigffeogkgcgmpjbmnpf
عنوان URL الرسمي https://chromewebstore.google.com/detail/font-localization-for-goo/eeapanaandeeaigffeogkgcgmpjbmnpf
الوصف Forces glyph rendering for a specific language in Google Fonts.
حجم الملف 28.33 KB
عدد التثبيتات 119
النسخة الحالية 1.0.2
آخر تحديث 2019-07-02
تاريخ النشر 2019-07-02
تقييم 5.00/5 مجموع تقييمات 1
المطور Hristiyan Dodov
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/OblikStudio/font-localization
عنوان صفحة المساعدة https://github.com/OblikStudio/font-localization/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0.2",
    "name": "Font Localization for Google Fonts",
    "description": "Forces glyph rendering for a specific language in Google Fonts.",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/fonts.google.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    }
}