Template Cloner

A simple app which captures a template with CSS properties

Template Cloner là gì?

Template Cloner là một tiện ích mở rộng Chrome được phát triển bởi hanhyuk83.cho, và tính năng chính của nó là "A simple app which captures a template with CSS properties".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Template Cloner

Tải xuống các tệp mở rộng Template Cloner dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Template Cloner Template Cloner
ID algcigdlhddkogplednhofopeeafbomm
URL Chính Thức https://chrome.google.com/webstore/detail/template-cloner/algcigdlhddkogplednhofopeeafbomm
Mô tả A simple app which captures a template with CSS properties
Kích Thước Tệp 52.01 KB
Số Lần Cài Đặt 595
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2016-09-28
Ngày Phát Hành 2016-09-28
Đánh Giá 3.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển hanhyuk83.cho
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật http://www.example.com
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}