Polymer DevTools Extension

Shows information about Polymer elements

ما هو Polymer DevTools Extension؟

Polymer DevTools Extension هو إضافة Chrome تم تطويرها بواسطة justinfagnani، والميزة الرئيسية لها هي "Shows information about Polymer elements".

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

screenshot

تحميل ملف CRX للإضافة Polymer DevTools Extension

قم بتنزيل ملفات الامتداد Polymer DevTools Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        A Chrome DevTools extension to assist with Polymer development.

NOTE: It is highly recommended that the Polymer DevTools Extension is installed to a separate Chrome profile. The extension needs permission to modify every page to install metrics gathering code.                    

معلومات أساسية عن التمديد

الاسم Polymer DevTools Extension Polymer DevTools Extension
ID mmpfaamodhhlbadloaibpocmcomledcg
عنوان URL الرسمي https://chrome.google.com/webstore/detail/polymer-devtools-extensio/mmpfaamodhhlbadloaibpocmcomledcg
الوصف Shows information about Polymer elements
حجم الملف 1.09 MB
عدد التثبيتات 400
النسخة الحالية 0.0.9
آخر تحديث 2017-03-30
تاريخ النشر 2017-03-30
تقييم 2.29/5 مجموع تقييمات 7
المطور justinfagnani
نوع الدفع free
موقع الإضافة https://polymer-project.org/
عنوان صفحة المساعدة https://github.com/PolymerLabs/polydev/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Polymer DevTools Extension",
    "version": "0.0.9",
    "description": "Shows information about Polymer elements",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "",
                "*:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "devtools_page": "src\/devtools.html",
    "web_accessible_resources": [
        "src\/document-context\/measure-custom-elements.js",
        "src\/document-context\/measure-custom-elements.js.map",
        "src\/document-context\/measure-custom-elements.ts"
    ],
    "manifest_version": 2
}