Flomo API
Send selected text to flomo
What is Flomo API?
Flomo API is a Chrome extension developed by Yi Ren, and its main feature is "Send selected text to flomo".
Extension Screenshots
Download Flomo API Extension CRX File
Download Flomo API 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
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
Extension Basic Information
Name | Flomo API |
ID | bliaamgfpeogldcelkmkegfofapaocfn |
Official URL | https://chromewebstore.google.com/detail/flomo-api/bliaamgfpeogldcelkmkegfofapaocfn |
Description | Send selected text to flomo |
File Size | 236 KB |
Installation Count | 628 |
Current Version | 0.3.4 |
Last Updated | 2021-01-17 |
Publish Date | 2020-12-27 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Yi Ren |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/YIREN1/chrome-extension-flomo-api |
Help Page URL | https://github.com/YIREN1/chrome-extension-flomo-api/issues |
Supported Languages | 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'" } |