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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}