HTML for Basecamp

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

Cos'è HTML for Basecamp?

HTML for Basecamp è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione HTML for Basecamp

Scarica i file di estensione HTML for Basecamp in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome HTML for Basecamp HTML for Basecamp
ID kmnmhcolnmikliggbninabbbiboanocj
URL Ufficiale https://chromewebstore.google.com/detail/html-for-basecamp/kmnmhcolnmikliggbninabbbiboanocj
Descrizione Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.
Dimensione del File 43.82 KB
Conteggio Installazioni 47
Versione Corrente 0.1
Ultimo Aggiornamento 2012-10-23
Data di Pubblicazione 2012-10-23
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}