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
公式URL 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
Eメール [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"
    ]
}