Template Cloner

A simple app which captures a template with CSS properties

Hvad er Template Cloner?

Template Cloner er en Chrome-udvidelse udviklet af hanhyuk83.cho, og dens hovedfunktion er "A simple app which captures a template with CSS properties".

Udvidelsesskærmbilleder

screenshot

Download Template Cloner-udvidelses-CRX-fil

Download Template Cloner-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Template Cloner Template Cloner
ID algcigdlhddkogplednhofopeeafbomm
Officiel URL https://chrome.google.com/webstore/detail/template-cloner/algcigdlhddkogplednhofopeeafbomm
Beskrivelse A simple app which captures a template with CSS properties
Filstørrelse 52.01 KB
Antal Installationer 595
Nuværende Version 1.0.3
Senest Opdateret 2016-09-28
Udgivelsesdato 2016-09-28
Bedømmelse 3.25/5 Samlet 4 Bedømmelser
Udvikler hanhyuk83.cho
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side http://www.example.com
Understøttede Sprog 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"
    ]
}