HTML for Basecamp

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

Apa itu HTML for Basecamp?

HTML for Basecamp adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi HTML for Basecamp

Unduh file ekstensi HTML for Basecamp dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama HTML for Basecamp HTML for Basecamp
ID kmnmhcolnmikliggbninabbbiboanocj
URL Resmi https://chromewebstore.google.com/detail/html-for-basecamp/kmnmhcolnmikliggbninabbbiboanocj
Deskripsi Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.
Ukuran File 43.82 KB
Jumlah Instalasi 47
Versi Saat Ini 0.1
Terakhir Diperbarui 2012-10-23
Tanggal Publikasi 2012-10-23
Penilaian 3.00/5 Total 2 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}