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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" } } |