HTML for Basecamp

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

Wat is HTML for Basecamp?

HTML for Basecamp is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie HTML for Basecamp

Download HTML for Basecamp-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam HTML for Basecamp HTML for Basecamp
ID kmnmhcolnmikliggbninabbbiboanocj
Officiële URL https://chromewebstore.google.com/detail/html-for-basecamp/kmnmhcolnmikliggbninabbbiboanocj
Beschrijving Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.
Bestandsgrootte 43.82 KB
Aantal Installaties 47
Huidige Versie 0.1
Laatst Bijgewerkt 2012-10-23
Publicatiedatum 2012-10-23
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}