Flomo API
Send selected text to flomo
Was ist Flomo API?
Flomo API ist eine Chrome-Erweiterung, die von Yi Ren entwickelt wurde, und ihr Hauptmerkmal ist "Send selected text to flomo".
Erweiterungsscreenshots
Flomo API-Erweiterungs-CRX-Datei herunterladen
Laden Sie Flomo API-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bliaamgfpeogldcelkmkegfofapaocfn |
| Offizielle URL | https://chromewebstore.google.com/detail/flomo-api/bliaamgfpeogldcelkmkegfofapaocfn |
| Beschreibung | Send selected text to flomo |
| Dateigröße | 236 KB |
| Installationsanzahl | 628 |
| Aktuelle Version | 0.3.4 |
| Letztes Update | 2021-01-17 |
| Veröffentlichungsdatum | 2020-12-27 |
| Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
| Entwickler | Yi Ren |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/YIREN1/chrome-extension-flomo-api |
| Hilfeseite URL | https://github.com/YIREN1/chrome-extension-flomo-api/issues |
| Unterstützte Sprachen | 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'"
} | |