Template Cloner

A simple app which captures a template with CSS properties

Template Clonerคืออะไร?

Template Cloner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hanhyuk83.cho และคุณลักษณะหลักของมันคือ "A simple app which captures a template with CSS properties"

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

screenshot

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

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

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

                        Template Cloner is my first Stack-a-thon project, and designed for web developers, who want to catch a glimpse of what the CSS properties and tags of template would look like. You can copy the template with CSS properties into your clipboard, or check out how it looks like at codepen.io

If there's anything you would like to suggest, feel free to leave me a message.
Hope y'all take advantage of this extension!                    

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

ชื่อ Template Cloner Template Cloner
ID algcigdlhddkogplednhofopeeafbomm
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/template-cloner/algcigdlhddkogplednhofopeeafbomm
คำอธิบาย A simple app which captures a template with CSS properties
ขนาดไฟล์ 52.01 KB
จำนวนการติดตั้ง 595
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2016-09-28
วันที่เผยแพร่ 2016-09-28
คะแนน 3.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา hanhyuk83.cho
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว http://www.example.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Template Cloner",
    "description": "A simple app which captures a template with CSS properties",
    "version": "1.0.3",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery-3.1.0.slim.min.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/128.png",
        "default_title": "I want to clone this template"
    },
    "icons": {
        "128": "icons\/128.png",
        "48": "icons\/48.png",
        "16": "icons\/16.png"
    },
    "permissions": [
        "activeTab"
    ]
}