Notion Helper
An extension to enhance your experience with Notion
ما هو Notion Helper؟
Notion Helper هو إضافة Chrome تم تطويرها بواسطة meshkani.mo، والميزة الرئيسية لها هي "An extension to enhance your experience with Notion".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Notion Helper
قم بتنزيل ملفات الامتداد Notion Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Features: - RTL - Custom Font (Type in the name of the font you want. Make sure that the font is installed on your computer) If you need any other features that are missing, let me know in the comments.
معلومات أساسية عن التمديد
الاسم | Notion Helper |
ID | jckgilkkfgibbeokglganbfdipcblibd |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/notion-helper/jckgilkkfgibbeokglganbfdipcblibd |
الوصف | An extension to enhance your experience with Notion |
حجم الملف | 47.12 KB |
عدد التثبيتات | 2,208 |
النسخة الحالية | 1.0.1 |
آخر تحديث | 2021-10-01 |
تاريخ النشر | 2021-09-23 |
تقييم | 5.00/5 مجموع تقييمات 29 |
المطور | meshkani.mo |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notion Helper", "version": "1.0.1", "description": "An extension to enhance your experience with Notion", "manifest_version": 2, "permissions": [ "storage", "activeTab", "*:\/\/*.notion.so\/*", "*:\/\/*.notion.site\/*" ], "browser_action": { "default_popup": "src\/popup\/popup.html", "default_icon": { "32": "\/logo\/logo-32.png", "48": "\/logo\/logo-48.png", "128": "\/logo\/logo-128.png" } }, "background": { "scripts": [ "src\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.notion.so\/*", "*:\/\/*.notion.site\/*" ], "js": [ "src\/scripts\/rtl.js", "src\/scripts\/font.js" ], "all_frames": true } ], "icons": { "32": "\/logo\/logo-32.png", "48": "\/logo\/logo-48.png", "128": "\/logo\/logo-128.png" } } |