HTML for Basecamp

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

Hvad er HTML for Basecamp?

HTML for Basecamp er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.".

Udvidelsesskærmbilleder

screenshot

Download HTML for Basecamp-udvidelses-CRX-fil

Download HTML for Basecamp-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn HTML for Basecamp HTML for Basecamp
ID kmnmhcolnmikliggbninabbbiboanocj
Officiel URL https://chromewebstore.google.com/detail/html-for-basecamp/kmnmhcolnmikliggbninabbbiboanocj
Beskrivelse Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.
Filstørrelse 43.82 KB
Antal Installationer 47
Nuværende Version 0.1
Senest Opdateret 2012-10-23
Udgivelsesdato 2012-10-23
Bedømmelse 3.00/5 Samlet 2 Bedømmelser
Udvikler Unknown
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}