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
官方網址 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
}