Export your outline

Export WorkFlowy to various formats including RTF and LaTeX.

什么是Export your outline?

Export your outline是由Paul Madeline开发的Chrome扩展程序,该扩展的主要功能是“Export WorkFlowy to various formats including RTF and LaTeX.”。

扩展截图

screenshot
screenshot

下载Export your outline扩展crx文件

下载Export your outline扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Export your outline from WorkFlowy and from Dynalist to various formats including RTF and LaTeX. The extension have a lot of options to create your document, and settings to customize your interface.                    

扩展基本信息

名称 Export your outline Export your outline
ID edinllmhijkgpkganmampmppgcmefaaf
官方URL https://chrome.google.com/webstore/detail/export-your-outline/edinllmhijkgpkganmampmppgcmefaaf
简介 Export WorkFlowy to various formats including RTF and LaTeX.
文件大小 250 KB
安装次数 141
当前版本 0.9.8
更新时间 2019-06-11
上架时间 2019-06-11
评分 3.50/5 共4次评分
开发者 Paul Madeline
电子邮箱 [email protected]
付费类型 free
支持的语言 en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Export your outline",
    "short_name": "EYO",
    "version": "0.9.8",
    "version_name": "Beta 0.9.8",
    "description": "__MSG_Manifestdesc__",
    "icons": {
        "16": "image\/icon16.png",
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            }
        },
        "open_workflowy": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "__MSG_OpenWorkFlowy__"
        }
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/workflowy.com\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/content_script.js"
            ]
        },
        {
            "matches": [
                "https:\/\/dynalist.io\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/content_script_dynalist.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "contextMenus"
    ],
    "page_action": {
        "default_name": "Export your outline",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "manifest_version": 2
}