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"
            ]
        }
    ]
}