Notion Helper
An extension to enhance your experience with Notion
Apa itu Notion Helper?
Notion Helper adalah ekstensi Chrome yang dikembangkan oleh meshkani.mo, dan fitur utamanya adalah "An extension to enhance your experience with Notion".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Notion Helper
Unduh file ekstensi Notion Helper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Notion Helper |
ID | jckgilkkfgibbeokglganbfdipcblibd |
URL Resmi | https://chromewebstore.google.com/detail/notion-helper/jckgilkkfgibbeokglganbfdipcblibd |
Deskripsi | An extension to enhance your experience with Notion |
Ukuran File | 47.12 KB |
Jumlah Instalasi | 2,208 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2021-10-01 |
Tanggal Publikasi | 2021-09-23 |
Penilaian | 5.00/5 Total 29 Penilaian |
Pengembang | meshkani.mo |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |