HTML for Basecamp

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

Vad är HTML for Basecamp?

HTML for Basecamp är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.".

Tilläggsskärmbilder

screenshot

Ladda ner HTML for Basecamp-förlängningens CRX-fil

Ladda ner HTML for Basecamp-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn HTML for Basecamp HTML for Basecamp
ID kmnmhcolnmikliggbninabbbiboanocj
Officiell webbadress https://chromewebstore.google.com/detail/html-for-basecamp/kmnmhcolnmikliggbninabbbiboanocj
Beskrivning Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.
Filstorlek 43.82 KB
Antal Installationer 47
Aktuell Version 0.1
Senast Uppdaterad 2012-10-23
Publiceringsdatum 2012-10-23
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}