Flomo API
Send selected text to flomo
Flomo APIとは何ですか?
Flomo APIはYi Renによって開発されたChromeの拡張機能で、その主な機能は「Send selected text to flomo」です。
拡張機能のスクリーンショット
Flomo API拡張機能のCRXファイルをダウンロード
Flomo API拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Flomo API |
ID | bliaamgfpeogldcelkmkegfofapaocfn |
公式URL | https://chromewebstore.google.com/detail/flomo-api/bliaamgfpeogldcelkmkegfofapaocfn |
説明 | Send selected text to flomo |
ファイルサイズ | 236 KB |
インストール数 | 628 |
現在のバージョン | 0.3.4 |
最終更新日 | 2021-01-17 |
公開日 | 2020-12-27 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | Yi Ren |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/YIREN1/chrome-extension-flomo-api |
ヘルプページのURL | https://github.com/YIREN1/chrome-extension-flomo-api/issues |
対応言語 | 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'" } |