HTML for Basecamp

Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.

Co je HTML for Basecamp?

HTML for Basecamp je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření HTML for Basecamp

Stáhněte si soubory rozšíření HTML for Basecamp ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        We started working on Basecamp and I needed to add some basic formatting to the text of the tasks and found it almost imposible with the current editor. When I found you could paste form another source some html formatted content I decided to venture myself into making a little extension to allow html insertion directly.                    

Základní Informace o Rozšíření

Název HTML for Basecamp HTML for Basecamp
ID kmnmhcolnmikliggbninabbbiboanocj
Oficiální URL https://chromewebstore.google.com/detail/html-for-basecamp/kmnmhcolnmikliggbninabbbiboanocj
Popis Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.
Velikost souboru 43.82 KB
Počet instalací 47
Aktuální Verze 0.1
Poslední Aktualizace 2012-10-23
Datum Vydání 2012-10-23
Hodnocení 3.00/5 Celkem 2 Hodnocení
Vývojář Unknown
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HTML for Basecamp",
    "version": "0.1",
    "manifest_version": 2,
    "description": "Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/basecamp.com\/*"
            ],
            "js": [
                "jquery.js",
                "go.js",
                "resize.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ]
}