Code Tag

This extension helps add html tag for editable selected context

Code Tagคืออะไร?

Code Tag เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zouyu4524 และคุณลักษณะหลักของมันคือ "This extension helps add html tag for editable selected context"

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

screenshot

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

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

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

 在博客的HTML编辑页面为选定的内容 添加HTML标签 注意:安装后请刷新需要使用该插件的页面以生效。 目前支持两种模式: 1. Block (
...
) 2. Inline (...) 配合Blogger添加自定义CSS效果更佳!

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

ชื่อ Code Tag Code Tag
ID nglfhnmgedigeapkbmmgcngomahhbdol
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/code-tag/nglfhnmgedigeapkbmmgcngomahhbdol
คำอธิบาย This extension helps add html tag for editable selected context
ขนาดไฟล์ 38.4 KB
จำนวนการติดตั้ง 28
เวอร์ชันปัจจุบัน 0.3
อัปเดตครั้งล่าสุด 2017-06-27
วันที่เผยแพร่ 2017-06-26
คะแนน 4.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา zouyu4524
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code Tag",
    "description": "This extension helps add html tag for editable selected context",
    "version": "0.3",
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "addTag.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 2
}