Mind The Mark

Turns the basic wiki text input into a real code editor!

Vad är Mind The Mark?

Mind The Mark är en Chrome-tillägg utvecklad av GroovyDragon, och dess huvudfunktion är "Turns the basic wiki text input into a real code editor!".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Mind The Mark-förlängningens CRX-fil

Ladda ner Mind The Mark-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This turn the iGEM wiki into an amazing code editor instead of the boring and bland text editor you're used to.                    

Grundläggande Information om Tillägg

Namn Mind The Mark Mind The Mark
ID jkagocihmkabhekcmdgiloihalnoliai
Officiell webbadress https://chromewebstore.google.com/detail/mind-the-mark/jkagocihmkabhekcmdgiloihalnoliai
Beskrivning Turns the basic wiki text input into a real code editor!
Filstorlek 342 KB
Antal Installationer 66
Aktuell Version 2
Senast Uppdaterad 2019-03-08
Publiceringsdatum 2019-03-08
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare GroovyDragon
Betalningssätt free
Tilläggswebbplats https://github.com/ucligem2015/Mind-The-Mark
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mind The Mark",
    "description": "Turns the basic wiki text input into a real code editor!",
    "manifest_version": 2,
    "version": "2",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "background.js",
                "codemirror.js",
                "modes\/xml.js",
                "addons\/matchtags.js"
            ],
            "css": [
                "codemirror.css",
                "monokai.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "script.js",
        "codemirror.js",
        "codemirror.css",
        "addons\/matchtags.js",
        "hint\/show-hint.css",
        "hint\/show-hint.js",
        "hint\/xml-hint.js",
        "hint\/html-hint.js"
    ]
}