Polymer DevTools Extension

Shows information about Polymer elements

Apa itu Polymer DevTools Extension?

Polymer DevTools Extension adalah ekstensi Chrome yang dikembangkan oleh justinfagnani, dan fitur utamanya adalah "Shows information about Polymer elements".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Polymer DevTools Extension

Unduh file ekstensi Polymer DevTools Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Polymer DevTools Extension Polymer DevTools Extension
ID mmpfaamodhhlbadloaibpocmcomledcg
URL Resmi https://chrome.google.com/webstore/detail/polymer-devtools-extensio/mmpfaamodhhlbadloaibpocmcomledcg
Deskripsi Shows information about Polymer elements
Ukuran File 1.09 MB
Jumlah Instalasi 400
Versi Saat Ini 0.0.9
Terakhir Diperbarui 2017-03-30
Tanggal Publikasi 2017-03-30
Penilaian 2.29/5 Total 7 Penilaian
Pengembang justinfagnani
Tipe Pembayaran free
Situs Ekstensi https://polymer-project.org/
URL Halaman Bantuan https://github.com/PolymerLabs/polydev/
Bahasa yang Didukung 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
}