Flomo API
Send selected text to flomo
Apa itu Flomo API?
Flomo API adalah ekstensi Chrome yang dikembangkan oleh Yi Ren, dan fitur utamanya adalah "Send selected text to flomo".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Flomo API
Unduh file ekstensi Flomo API 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
A non-official extension that allows users to select text on any web page and create a memo in flomo in one click, which hopefully is in line with flomo's original intention, "Take more notes". Enjoy
Informasi Dasar Ekstensi
Nama | Flomo API |
ID | bliaamgfpeogldcelkmkegfofapaocfn |
URL Resmi | https://chromewebstore.google.com/detail/flomo-api/bliaamgfpeogldcelkmkegfofapaocfn |
Deskripsi | Send selected text to flomo |
Ukuran File | 236 KB |
Jumlah Instalasi | 628 |
Versi Saat Ini | 0.3.4 |
Terakhir Diperbarui | 2021-01-17 |
Tanggal Publikasi | 2020-12-27 |
Penilaian | 5.00/5 Total 4 Penilaian |
Pengembang | Yi Ren |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/YIREN1/chrome-extension-flomo-api |
URL Halaman Bantuan | https://github.com/YIREN1/chrome-extension-flomo-api/issues |
Bahasa yang Didukung | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Send selected text to flomo", "version": "0.3.4", "name": "Flomo API", "options_page": "options.html", "background": { "page": "background.html" }, "permissions": [ "storage", "contextMenus", "notifications" ], "browser_action": { "default_popup": "popup.html", "default_icon": "logo-192.png" }, "icons": { "128": "logo-192.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "web_accessible_resources": [ "content.styles.css", "logo-192.png" ], "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |