HTML for Basecamp

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

¿Qué es HTML for Basecamp?

HTML for Basecamp es una extensión de Chrome desarrollada por Unknown, y su función principal es "Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión HTML for Basecamp

Descarga archivos de extensión HTML for Basecamp en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre HTML for Basecamp HTML for Basecamp
ID kmnmhcolnmikliggbninabbbiboanocj
URL Oficial https://chromewebstore.google.com/detail/html-for-basecamp/kmnmhcolnmikliggbninabbbiboanocj
Descripción Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.
Tamaño del Archivo 43.82 KB
Cantidad de Instalaciones 47
Versión Actual 0.1
Última Actualización 2012-10-23
Fecha de Publicación 2012-10-23
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador Unknown
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}