Flomo API

Send selected text to flomo

什么是Flomo API?

Flomo API是由Yi Ren开发的Chrome扩展程序,该扩展的主要功能是“Send selected text to flomo”。

扩展截图

screenshot
screenshot

下载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 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
电子邮箱 [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'"
}