Flomo API
Send selected text to flomo
Flomo API là gì?
Flomo API là một tiện ích mở rộng Chrome được phát triển bởi Yi Ren, và tính năng chính của nó là "Send selected text to flomo".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Flomo API
Tải xuống các tệp mở rộng Flomo API dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Flomo API |
ID | bliaamgfpeogldcelkmkegfofapaocfn |
URL Chính Thức | https://chromewebstore.google.com/detail/flomo-api/bliaamgfpeogldcelkmkegfofapaocfn |
Mô tả | Send selected text to flomo |
Kích Thước Tệp | 236 KB |
Số Lần Cài Đặt | 628 |
Phiên Bản Hiện Tại | 0.3.4 |
Cập Nhật Lần Cuối | 2021-01-17 |
Ngày Phát Hành | 2020-12-27 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Yi Ren |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/YIREN1/chrome-extension-flomo-api |
URL Trang Trợ Giúp | https://github.com/YIREN1/chrome-extension-flomo-api/issues |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |