HTML for Basecamp

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

Что такое HTML for Basecamp?

HTML for Basecamp - это расширение Chrome, разработанное Unknown, и его основная функция - "Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения HTML for Basecamp

Скачайте файлы расширений HTML for Basecamp в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название HTML for Basecamp HTML for Basecamp
ID kmnmhcolnmikliggbninabbbiboanocj
Официальный URL https://chromewebstore.google.com/detail/html-for-basecamp/kmnmhcolnmikliggbninabbbiboanocj
Описание Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.
Размер файла 43.82 KB
Количество установок 47
Текущая Версия 0.1
Последнее Обновление 2012-10-23
Дата публикации 2012-10-23
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}