Template Cloner

A simple app which captures a template with CSS properties

Wat is Template Cloner?

Template Cloner is een Chrome-extensie ontwikkeld door hanhyuk83.cho, en de belangrijkste functie is "A simple app which captures a template with CSS properties".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Template Cloner

Download Template Cloner-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Template Cloner Template Cloner
ID algcigdlhddkogplednhofopeeafbomm
Officiële URL https://chrome.google.com/webstore/detail/template-cloner/algcigdlhddkogplednhofopeeafbomm
Beschrijving A simple app which captures a template with CSS properties
Bestandsgrootte 52.01 KB
Aantal Installaties 595
Huidige Versie 1.0.3
Laatst Bijgewerkt 2016-09-28
Publicatiedatum 2016-09-28
Beoordeling 3.25/5 Totaal 4 Beoordelingen
Ontwikkelaar hanhyuk83.cho
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina http://www.example.com
Ondersteunde Talen 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"
    ]
}