Wrapper Bot

A Chrome extension for easily wrapping selected text in custom defined HTML templates.

Wrapper Botคืออะไร?

Wrapper Bot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jay Bats และคุณลักษณะหลักของมันคือ "A Chrome extension for easily wrapping selected text in custom defined HTML templates."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wrapper Bot

ดาวน์โหลดไฟล์ส่วนขยาย Wrapper Bot ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Wrapper Bot allows you to wrap your text selections in custom HTML wrappers.

This way, you can easily apply often used stylings without having to manually type the HTML over and over again.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Wrapper Bot Wrapper Bot
ID omnmbcgclimiokggjlaljacckoaieagi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/wrapper-bot/omnmbcgclimiokggjlaljacckoaieagi
คำอธิบาย A Chrome extension for easily wrapping selected text in custom defined HTML templates.
ขนาดไฟล์ 154 KB
จำนวนการติดตั้ง 38
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2014-05-29
วันที่เผยแพร่ 2014-05-29
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Jay Bats
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wrapper Bot",
    "version": "1.0",
    "manifest_version": 2,
    "description": "A Chrome extension for easily wrapping selected text in custom defined HTML templates.",
    "browser_action": {
        "default_icon": "icon-16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-1.9.1-min.js",
                "content.js"
            ]
        }
    ]
}