Notion - Add to calendar
This extension create a link for save notion event in google calendar
Apa itu Notion - Add to calendar?
Notion - Add to calendar adalah ekstensi Chrome yang dikembangkan oleh https://hugolevet.fr, dan fitur utamanya adalah "This extension create a link for save notion event in google calendar".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Notion - Add to calendar
Unduh file ekstensi Notion - Add to calendar 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
You can add simply notion's events in your calendar. For the moment, just google calendar is supported.
Informasi Dasar Ekstensi
Nama | Notion - Add to calendar |
ID | fmopabaabflalnnhjknhemmpenfjlldh |
URL Resmi | https://chromewebstore.google.com/detail/notion-add-to-calendar/fmopabaabflalnnhjknhemmpenfjlldh |
Deskripsi | This extension create a link for save notion event in google calendar |
Ukuran File | 14.5 KB |
Jumlah Instalasi | 1,846 |
Versi Saat Ini | 2.1.0 |
Terakhir Diperbarui | 2024-02-20 |
Tanggal Publikasi | 2021-09-10 |
Penilaian | 2.00/5 Total 6 Penilaian |
Pengembang | https://hugolevet.fr |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://hugolevet.fr/notion-add-to-calendar/ |
URL Halaman Kebijakan Privasi | https://hugolevet.fr/p/disable-cookies-privacy.html |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "2.1.0", "name": "Notion - Add to calendar", "description": "This extension create a link for save notion event in google calendar", "offline_enabled": true, "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*", "*:\/\/*.notion.site\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "action": { "default_popup": "popup.html", "default_icon": { "128": "icon.png" } }, "background": { "service_worker": "background.js" } } |