Notion Helper
An extension to enhance your experience with Notion
What is Notion Helper?
Notion Helper is a Chrome extension developed by meshkani.mo, and its main feature is "An extension to enhance your experience with Notion".
Extension Screenshots
Download Notion Helper Extension CRX File
Download Notion Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Notion Helper |
ID | jckgilkkfgibbeokglganbfdipcblibd |
Official URL | https://chromewebstore.google.com/detail/notion-helper/jckgilkkfgibbeokglganbfdipcblibd |
Description | An extension to enhance your experience with Notion |
File Size | 47.12 KB |
Installation Count | 2,208 |
Current Version | 1.0.1 |
Last Updated | 2021-10-01 |
Publish Date | 2021-09-23 |
Rating | 5.00/5 Total 29 Ratings |
Developer | meshkani.mo |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |