GitHub Flavored Markdown 2

Preview GitHub Flavored Markdown in Chrome - Forked from GitHub Flavored Markdown and added support for text/x-markdown

Qu'est-ce que GitHub Flavored Markdown 2 ?

GitHub Flavored Markdown 2 est une extension Chrome développée par xrasadeveloper, et sa fonction principale est "Preview GitHub Flavored Markdown in Chrome - Forked from GitHub Flavored Markdown and added support for text/x-markdown".

Télécharger le fichier CRX de l'extension GitHub Flavored Markdown 2

Téléchargez les fichiers d'extension GitHub Flavored Markdown 2 au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Preview GitHub Flavored Markdown in Chrome
A Markdown previewer featuring GitHub-like style.

When previewing local files, this extension also check for file changes and render modifications.

2018/04/27 update
remove border when print                    

Informations de Base sur l'Extension

Nom GitHub Flavored Markdown 2 GitHub Flavored Markdown 2
ID fifkmhcgoobihkepohlhpkabplahglbo
URL Officiel https://chromewebstore.google.com/detail/github-flavored-markdown/fifkmhcgoobihkepohlhpkabplahglbo
Description Preview GitHub Flavored Markdown in Chrome - Forked from GitHub Flavored Markdown and added support for text/x-markdown
Taille du Fichier 166 KB
Nombre d'Installations 177
Version Actuelle 0.1.0
Dernière Mise à Jour 2018-04-27
Date de Publication 2018-04-27
Évaluation 5.00/5 Total 1 Évaluations
Développeur xrasadeveloper
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon-38.png",
        "default_title": "GitHub Flavored Markdown 2"
    },
    "content_scripts": [
        {
            "js": [
                "js\/highlight.js",
                "js\/marked.js",
                "js\/plugin.js"
            ],
            "matches": [
                "http:\/\/*\/*.md",
                "http:\/\/*\/*.mdown",
                "http:\/\/*\/*.markdown",
                "https:\/\/*\/*.md",
                "https:\/\/*\/*.mdown",
                "https:\/\/*\/*.markdown",
                "file:\/\/*\/*.md",
                "file:\/\/*\/*.mdown",
                "file:\/\/*\/*.markdown"
            ]
        }
    ],
    "description": "Preview GitHub Flavored Markdown in Chrome - Forked from GitHub Flavored Markdown and added support for text\/x-markdown",
    "icons": {
        "128": "icons\/icon.png",
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png"
    },
    "manifest_version": 2,
    "name": "GitHub Flavored Markdown 2",
    "permissions": [
        "storage"
    ],
    "version": "0.1.0",
    "web_accessible_resources": [
        "css\/default.css",
        "css\/github.css",
        "css\/markdown.css",
        "css\/page.css"
    ]
}