Notion Forms
Hide Notion widget border
Apa itu Notion Forms?
Notion Forms adalah ekstensi Chrome yang dikembangkan oleh savetonotion.so, dan fitur utamanya adalah "Hide Notion widget border".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Notion Forms
Unduh file ekstensi Notion Forms 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 * Hide Notion Widget border to put widgets inside Notion without noticing it * Copy easily your Notion credentials by clicking on a button. ≡ Privacy * The extension does NOT collect any data or send data to third party.
Informasi Dasar Ekstensi
Nama | |
ID | lmlcnllajejljjffbfnpcmeldomdcfjn |
URL Resmi | https://chrome.google.com/webstore/detail/notion-forms/lmlcnllajejljjffbfnpcmeldomdcfjn |
Deskripsi | Hide Notion widget border |
Ukuran File | 16.99 KB |
Jumlah Instalasi | 856 |
Versi Saat Ini | 0.0.1 |
Terakhir Diperbarui | 2020-12-08 |
Tanggal Publikasi | 2020-12-08 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | savetonotion.so |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://www.notion.so/Privacy-Policy-79e2d879b3d3405ba50e800a39fe25ec |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notion Forms", "version": "0.0.1", "manifest_version": 2, "description": "Hide Notion widget border", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.notion.so\/*" ], "css": [], "js": [ "src\/custom.js" ] } ], "permissions": [ "storage", "activeTab", "https:\/\/*.notion.so\/*", "cookies" ], "browser_action": { "default_popup": "src\/popup.html", "default_title": "Notion Forms" }, "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-...='; object-src 'self'" } |