Export your outline

Export WorkFlowy to various formats including RTF and LaTeX.

Was ist Export your outline?

Export your outline ist eine Chrome-Erweiterung, die von Paul Madeline entwickelt wurde, und ihr Hauptmerkmal ist "Export WorkFlowy to various formats including RTF and LaTeX.".

Erweiterungsscreenshots

screenshot
screenshot

Export your outline-Erweiterungs-CRX-Datei herunterladen

Laden Sie Export your outline-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Export your outline Export your outline
ID edinllmhijkgpkganmampmppgcmefaaf
Offizielle URL https://chrome.google.com/webstore/detail/export-your-outline/edinllmhijkgpkganmampmppgcmefaaf
Beschreibung Export WorkFlowy to various formats including RTF and LaTeX.
Dateigröße 250 KB
Installationsanzahl 141
Aktuelle Version 0.9.8
Letztes Update 2019-06-11
Veröffentlichungsdatum 2019-06-11
Bewertung 3.50/5 Insgesamt 4 Bewertungen
Entwickler Paul Madeline
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}