Notion Font Changer

An extension that will allow you to change the default font used in Notion, and separately the font used in code blocks

ما هو Notion Font Changer؟

Notion Font Changer هو إضافة Chrome تم تطويرها بواسطة denno020، والميزة الرئيسية لها هي "An extension that will allow you to change the default font used in Notion, and separately the font used in code blocks".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Notion Font Changer

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

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

                        This extensions makes it incredibly easy for you to change up the look and feel of Notion!
Notion already gives users the ability to change between 3 fonts: serif, sans-serif and monospace. That's all well and good, but what if you wanted to choose a different font family for those styles? With this extension, you can!
Font's will be applied Notion-wide on your desktop machine.
Further, you can change the font specifically for code blocks, so instead of using a sans-serif or serif for code, you can choose your favourite monospace font.                    

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

الاسم Notion Font Changer Notion Font Changer
ID elnjagingppccbpccnldbhmlgmomeaml
عنوان URL الرسمي https://chromewebstore.google.com/detail/notion-font-changer/elnjagingppccbpccnldbhmlgmomeaml
الوصف An extension that will allow you to change the default font used in Notion, and separately the font used in code blocks
حجم الملف 147 KB
عدد التثبيتات 298
النسخة الحالية 0.0.1
آخر تحديث 2023-07-19
تاريخ النشر 2023-07-19
تقييم 4.20/5 مجموع تقييمات 5
المطور denno020
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Notion Font Changer",
    "version": "0.0.1",
    "description": "An extension that will allow you to change the default font used in Notion, and separately the font used in code blocks",
    "options_page": "src\/pages\/options\/index.html",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "scripting",
        "activeTab",
        "fontSettings",
        "storage"
    ],
    "devtools_page": "src\/pages\/devtools\/index.html",
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}