Template Cloner

A simple app which captures a template with CSS properties

Was ist Template Cloner?

Template Cloner ist eine Chrome-Erweiterung, die von hanhyuk83.cho entwickelt wurde, und ihr Hauptmerkmal ist "A simple app which captures a template with CSS properties".

Erweiterungsscreenshots

screenshot

Template Cloner-Erweiterungs-CRX-Datei herunterladen

Laden Sie Template Cloner-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Template Cloner Template Cloner
ID algcigdlhddkogplednhofopeeafbomm
Offizielle URL https://chrome.google.com/webstore/detail/template-cloner/algcigdlhddkogplednhofopeeafbomm
Beschreibung A simple app which captures a template with CSS properties
Dateigröße 52.01 KB
Installationsanzahl 595
Aktuelle Version 1.0.3
Letztes Update 2016-09-28
Veröffentlichungsdatum 2016-09-28
Bewertung 3.25/5 Insgesamt 4 Bewertungen
Entwickler hanhyuk83.cho
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite http://www.example.com
Unterstützte Sprachen 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"
    ]
}