Flomo API
Send selected text to flomo
Wat is Flomo API?
Flomo API is een Chrome-extensie ontwikkeld door Yi Ren, en de belangrijkste functie is "Send selected text to flomo".
Extensie Screenshots
Download het CRX-bestand van de extensie Flomo API
Download Flomo API-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | bliaamgfpeogldcelkmkegfofapaocfn |
| Officiële URL | https://chromewebstore.google.com/detail/flomo-api/bliaamgfpeogldcelkmkegfofapaocfn |
| Beschrijving | Send selected text to flomo |
| Bestandsgrootte | 236 KB |
| Aantal Installaties | 628 |
| Huidige Versie | 0.3.4 |
| Laatst Bijgewerkt | 2021-01-17 |
| Publicatiedatum | 2020-12-27 |
| Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | Yi Ren |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/YIREN1/chrome-extension-flomo-api |
| Help Pagina-URL | https://github.com/YIREN1/chrome-extension-flomo-api/issues |
| Ondersteunde Talen | 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'"
} | |