Notion Themes

Make your Notion pretty with custom themes.

ما هو Notion Themes؟

Notion Themes هو إضافة Chrome تم تطويرها بواسطة Yudax، والميزة الرئيسية لها هي "Make your Notion pretty with custom themes.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Notion Themes is an open-source web extension to apply custom themes to Notion.

Install Notion Themes and change the overall look and feel of Notion. Select from 10+ different dark/light color schemes.

Features:
- Library of updated beautiful themes
- Apply Custom Google Fonts
- Free and Open source                    

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

الاسم Notion Themes Notion Themes
ID pglbhommhmgieofbdbnlpcbgcdmoagfo
عنوان URL الرسمي https://chrome.google.com/webstore/detail/notion-themes/pglbhommhmgieofbdbnlpcbgcdmoagfo
الوصف Make your Notion pretty with custom themes.
حجم الملف 27.7 KB
عدد التثبيتات 7,000
النسخة الحالية 0.0.2
آخر تحديث 2022-01-11
تاريخ النشر 2022-01-11
تقييم 5.00/5 مجموع تقييمات 17
المطور Yudax
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/notionblog/NotionThemes
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Notion Themes",
    "version": "0.0.2",
    "description": "Make your Notion pretty with custom themes.",
    "permissions": [
        "storage",
        "https:\/\/notionthemes.netlify.app\/"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Choose a theme",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "icons\/16.png",
            "38": "icons\/48.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}