Template Cloner

A simple app which captures a template with CSS properties

什么是Template Cloner?

Template Cloner是由hanhyuk83.cho开发的Chrome扩展程序,该扩展的主要功能是“A simple app which captures a template with CSS properties”。

扩展截图

screenshot

下载Template Cloner扩展crx文件

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