Web Components

Identify all Custom Elements used on a site.

Τι είναι το Web Components;

Το Web Components είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Zeno Rocha, και η κύρια λειτουργία του είναι "Identify all Custom Elements used on a site.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Web Components

Λήψη αρχείων επέκτασης Web Components σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Web Components are a collection of standards which are working their way through the W3C. One of these specs is called Custom Elements and gives you the ability to create your own HTML elements.

The idea behind this extension is to detect pages that are using it nowadays and show an icon in the address bar when it happens.

Source code available at: https://github.com/webcomponents/chrome-webcomponents-extension                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Web Components Web Components
ID filcobblndaenakhejinpjdblekilpgn
Επίσημο URL https://chrome.google.com/webstore/detail/web-components/filcobblndaenakhejinpjdblekilpgn
Περιγραφή Identify all Custom Elements used on a site.
Μέγεθος Αρχείου 17.1 KB
Αριθμός Εγκαταστάσεων 30,479
Τρέχουσα Έκδοση 0.1.1
Τελευταία Ενημέρωση 2014-05-19
Ημερομηνία Δημοσίευσης 2014-05-19
Αξιολόγηση 3.17/5 Συνολικά 86 Αξιολογήσεις
Προγραμματιστής Zeno Rocha
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Components",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "Identify all Custom Elements used on a site.",
    "icons": {
        "16": "img\/logo_16x16.png",
        "48": "img\/logo_48x48.png",
        "128": "img\/logo_128x128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": "img\/logo_19x19.png",
            "38": "img\/logo_38x38.png"
        }
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}