Notion Code Formatter

Format code blocks in Notion using Prettier. Made by notaku.so

ما هو Notion Code Formatter؟

Notion Code Formatter هو إضافة Chrome تم تطويرها بواسطة https://notaku.so، والميزة الرئيسية لها هي "Format code blocks in Notion using Prettier. Made by notaku.so".

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

screenshot

تحميل ملف CRX للإضافة Notion Code Formatter

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

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

                        Format your Notion code blocks white space and indentation

This extension will add a "format" button at the top of all Notion code blocks                    

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

الاسم Notion Code Formatter Notion Code Formatter
ID maijefmgfbmajbpbdlpbbplggifdgmme
عنوان URL الرسمي https://chromewebstore.google.com/detail/notion-code-formatter/maijefmgfbmajbpbdlpbbplggifdgmme
الوصف Format code blocks in Notion using Prettier. Made by notaku.so
حجم الملف 1.51 MB
عدد التثبيتات 131
النسخة الحالية 1.0.3
آخر تحديث 2023-03-16
تاريخ النشر 2023-02-19
تقييم 3.14/5 مجموع تقييمات 7
المطور https://notaku.so
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://notaku.so
عنوان صفحة المساعدة https://notaku.so
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Notion Code Formatter",
    "version": "1.0.3",
    "description": "Format code blocks in Notion using Prettier. Made by notaku.so",
    "author": "Tommaso De Rossi",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "https:\/\/www.notion.so\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "formatter.js"
            ]
        }
    ]
}