Markdown Anywhere

Distraction-free Markdown editing for the web

Τι είναι το Markdown Anywhere;

Το Markdown Anywhere είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Chris Wilper, και η κύρια λειτουργία του είναι "Distraction-free Markdown editing for the web".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Markdown Anywhere

Λήψη αρχείων επέκτασης Markdown Anywhere σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension launches a full-page syntax-aware Markdown editor, with instant preview, for any plain textarea on the web. Default or Vim keymaps are supported.

Usage: While on a page with a plain textarea, activate the editor with Alt-Shift-H. When finished, hit the button or keyboard shortcut again. If you prefer vim, you can turn it on in Options. While in vim mode, :q or :wq will close the editor. You also always close the editor with the same keyboard shortcut you used to launch it. Hit the other keyboard shortcut (Alt-Shift-L) to toggle instant preview on and off.

Save/restore functionality: If you you vim keybindings, the command sequence :w will save a copy of the current editor buffer, in case you need to restore it. There is a history of saves, accessible via Ctrl-1, Ctrl-2, etc. The most recent save always gets pushed onto the Ctrl-1 buffer, moving the previously stored one to Ctrl-2, and so on. This can be used across Markdown Anywhere sessions, and helps in case the server loses your change due to network outage, etc..

Tip: You can change the keyboard shortcuts to whatever you want. See the "Keyboard Shortcuts" link at the bottom of your extensions list in Chrome.

Note: This extension is designed to work primarily with *plain* textareas that don't already have rich text editing capabilities. Using it on already-rich textareas, such as those found on Github, is not supported.

Attributions: The author would like to acknowledge the following artists for making their work available for public use:
* Demo video background music by bensound: http://www.bensound.com/
* Promo image background (modified), by scienceatlife: https://www.flickr.com/photos/scienceatlife/ licensed under https://creativecommons.org/licenses/by-nc-sa/2.0/                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Markdown Anywhere Markdown Anywhere
ID nagjnpjbpmchpaodmfggaaamhhfilamo
Επίσημο URL https://chromewebstore.google.com/detail/markdown-anywhere/nagjnpjbpmchpaodmfggaaamhhfilamo
Περιγραφή Distraction-free Markdown editing for the web
Μέγεθος Αρχείου 732 KB
Αριθμός Εγκαταστάσεων 514
Τρέχουσα Έκδοση 1.7.1
Τελευταία Ενημέρωση 2021-12-10
Ημερομηνία Δημοσίευσης 2019-03-05
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Chris Wilper
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "toggle-editor": {
            "description": "Launch or close the editor",
            "suggested_key": {
                "default": "Alt+Shift+H",
                "mac": "Alt+Shift+H"
            }
        },
        "toggle-preview": {
            "description": "Toggle preview visibility",
            "suggested_key": {
                "default": "Alt+Shift+L",
                "mac": "Alt+Shift+L"
            }
        }
    },
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "description": "Distraction-free Markdown editing for the web",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvAC5YzUFHPtNlV5wXppiHwMxDyF3sUQuMpQUhkz4rebWsrckAA5+KuXZJm2d\/+JFsB3ROK4nH7Gq\/\/3wK1tzqVo5CDSc1mxwwndRQY2ZaTc\/Gp7kuhGq\/biwEyN1Ufq21wa+Oq8ZoRrh4KZL6S\/pzVheEyli7pBqXZ2RJ\/EWkOhGzZOzRRSzqEtvx\/zEakBK3p79bWZMBd6AVPs8cMngwTpzCALPy4l1RCDCeMkHfPad7dPag7zRTp2Q2fYKAz3t4qk56ay8HdV9r4KVq2Z5tQYPjdmKEgFrGdhF4xoabH14TkgCOPz8F7\/jVi8ysBF\/oB17LLiEgvesjYOY8VNAOQIDAQAB",
    "manifest_version": 2,
    "name": "Markdown Anywhere",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "page_action": {
        "default_icon": "icon48.png"
    },
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "unlimitedStorage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.7.1",
    "web_accessible_resources": [
        "icon128.png",
        "hal.png",
        "notes.html"
    ]
}