Notion Colorizer
Add some style to Notion
ما هو Notion Colorizer؟
Notion Colorizer هو إضافة Chrome تم تطويرها بواسطة rosher.mark، والميزة الرئيسية لها هي "Add some style to Notion".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Notion Colorizer
قم بتنزيل ملفات الامتداد Notion Colorizer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension adds colors to Notion tables based on the tags you specify.
معلومات أساسية عن التمديد
الاسم | Notion Colorizer |
ID | bhnchphfhbkgieljecbphalgampfiehh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/notion-colorizer/bhnchphfhbkgieljecbphalgampfiehh |
الوصف | Add some style to Notion |
حجم الملف | 230 KB |
عدد التثبيتات | 25 |
النسخة الحالية | 0.1.1 |
آخر تحديث | 2023-04-04 |
تاريخ النشر | 2023-04-04 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | rosher.mark |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/DeMarkR/Notion-Colorizer |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notion Colorizer", "description": "Add some style to Notion", "version": "0.1.1", "manifest_version": 3, "background": { "service_worker": "serviceWorker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.www.notion.so\/*" ], "js": [ "contentScript.js" ] } ], "permissions": [ "storage" ], "options_ui": { "page": "options.html", "open_in_tab": true }, "action": { "default_title": "Notion Colorizer", "default_popup": "popup.html", "default_icon": { "16": "\/icons\/notionIco16.png", "32": "\/icons\/notionIco32.png", "48": "\/icons\/notionIco48.png", "128": "\/icons\/notionIco128.png" } }, "icons": { "16": "\/icons\/notionIco16.png", "32": "\/icons\/notionIco32.png", "48": "\/icons\/notionIco48.png", "128": "\/icons\/notionIco128.png" } } |