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 擴展基本資訊
| 名稱 | |
| ID | bliaamgfpeogldcelkmkegfofapaocfn |
| 官方網址 | 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 |
| 電子郵箱 | [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'"
} | |