Template Cloner

A simple app which captures a template with CSS properties

ما هو Template Cloner؟

Template Cloner هو إضافة Chrome تم تطويرها بواسطة hanhyuk83.cho، والميزة الرئيسية لها هي "A simple app which captures a template with CSS properties".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Template Cloner

قم بتنزيل ملفات الامتداد Template Cloner بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة سياسة الخصوصية 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"
    ]
}