Template Cloner

A simple app which captures a template with CSS properties

Apa itu Template Cloner?

Template Cloner adalah ekstensi Chrome yang dikembangkan oleh hanhyuk83.cho, dan fitur utamanya adalah "A simple app which captures a template with CSS properties".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Template Cloner

Unduh file ekstensi Template Cloner dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Template Cloner Template Cloner
ID algcigdlhddkogplednhofopeeafbomm
URL Resmi https://chrome.google.com/webstore/detail/template-cloner/algcigdlhddkogplednhofopeeafbomm
Deskripsi A simple app which captures a template with CSS properties
Ukuran File 52.01 KB
Jumlah Instalasi 595
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2016-09-28
Tanggal Publikasi 2016-09-28
Penilaian 3.25/5 Total 4 Penilaian
Pengembang hanhyuk83.cho
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi http://www.example.com
Bahasa yang Didukung 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"
    ]
}