Template Cloner

A simple app which captures a template with CSS properties

什麼是Template Cloner?

Template Cloner是由hanhyuk83.cho開發的Chrome擴展程式,該擴展的主要功能是“A simple app which captures a template with CSS properties”。

擴展截圖

screenshot

下載Template Cloner擴展crx文件

下載Template Cloner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Template Cloner Template Cloner
ID algcigdlhddkogplednhofopeeafbomm
官方網址 https://chrome.google.com/webstore/detail/template-cloner/algcigdlhddkogplednhofopeeafbomm
簡介 A simple app which captures a template with CSS properties
檔案大小 52.01 KB
安裝次數 595
目前版本 1.0.3
更新時間 2016-09-28
上架時間 2016-09-28
評分 3.25/5 共 4 次評分
開發者 hanhyuk83.cho
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL http://www.example.com
支援的語言 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"
    ]
}