Flomo API

Send selected text to flomo

Qu'est-ce que Flomo API ?

Flomo API est une extension Chrome développée par Yi Ren, et sa fonction principale est "Send selected text to flomo".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Flomo API

Téléchargez les fichiers d'extension Flomo API au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Flomo API Flomo API
ID bliaamgfpeogldcelkmkegfofapaocfn
URL Officiel https://chromewebstore.google.com/detail/flomo-api/bliaamgfpeogldcelkmkegfofapaocfn
Description Send selected text to flomo
Taille du Fichier 236 KB
Nombre d'Installations 628
Version Actuelle 0.3.4
Dernière Mise à Jour 2021-01-17
Date de Publication 2020-12-27
Évaluation 5.00/5 Total 4 Évaluations
Développeur Yi Ren
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/YIREN1/chrome-extension-flomo-api
URL de la Page d'Aide https://github.com/YIREN1/chrome-extension-flomo-api/issues
Langues Prises en Charge 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'"
}