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是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.”。

擴展截圖

screenshot

下載HTML for Basecamp擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}