Template Cloner

A simple app which captures a template with CSS properties

What is Template Cloner?

Template Cloner is a Chrome extension developed by hanhyuk83.cho, and its main feature is "A simple app which captures a template with CSS properties".

Extension Screenshots

screenshot

Download Template Cloner Extension CRX File

Download Template Cloner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Template Cloner Template Cloner
ID algcigdlhddkogplednhofopeeafbomm
Official URL https://chrome.google.com/webstore/detail/template-cloner/algcigdlhddkogplednhofopeeafbomm
Description A simple app which captures a template with CSS properties
File Size 52.01 KB
Installation Count 595
Current Version 1.0.3
Last Updated 2016-09-28
Publish Date 2016-09-28
Rating 3.25/5 Total 4 Ratings
Developer hanhyuk83.cho
Email [email protected]
Payment Type free
Privacy Policy Page URL http://www.example.com
Supported Languages 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"
    ]
}