Template Cloner

A simple app which captures a template with CSS properties

Vad är Template Cloner?

Template Cloner är en Chrome-tillägg utvecklad av hanhyuk83.cho, och dess huvudfunktion är "A simple app which captures a template with CSS properties".

Tilläggsskärmbilder

screenshot

Ladda ner Template Cloner-förlängningens CRX-fil

Ladda ner Template Cloner-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Template Cloner Template Cloner
ID algcigdlhddkogplednhofopeeafbomm
Officiell webbadress https://chrome.google.com/webstore/detail/template-cloner/algcigdlhddkogplednhofopeeafbomm
Beskrivning A simple app which captures a template with CSS properties
Filstorlek 52.01 KB
Antal Installationer 595
Aktuell Version 1.0.3
Senast Uppdaterad 2016-09-28
Publiceringsdatum 2016-09-28
Betyg 3.25/5 Totalt 4 Betyg
Utvecklare hanhyuk83.cho
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan http://www.example.com
Stödda Språk 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"
    ]
}