Preact Developer Tools

Adds debugging tools for Preact to Chrome

Τι είναι το Preact Developer Tools;

Το Preact Developer Tools είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Preact Developers, και η κύρια λειτουργία του είναι "Adds debugging tools for Preact to Chrome".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Preact Developer Tools

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

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

                        Debugging tools for Preact. This extension allows you to inspect the component hierarchy and change properties on the fly.                    

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

Όνομα Preact Developer Tools Preact Developer Tools
ID ilcajpmogmhpliinlbcdebhbcanbghmd
Επίσημο URL https://chromewebstore.google.com/detail/preact-developer-tools/ilcajpmogmhpliinlbcdebhbcanbghmd
Περιγραφή Adds debugging tools for Preact to Chrome
Μέγεθος Αρχείου 144 KB
Αριθμός Εγκαταστάσεων 9,788
Τρέχουσα Έκδοση 4.7.1
Τελευταία Ενημέρωση 2023-03-06
Ημερομηνία Δημοσίευσης 2020-06-10
Αξιολόγηση 5.00/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής Preact Developers
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://preactjs.github.io/preact-devtools/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/preactjs/preact-devtools/issues/
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/preactjs/preact-devtools/blob/master/PRIVACY.md
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Preact Developer Tools",
    "description": "Adds debugging tools for Preact to Chrome",
    "version": "4.7.1",
    "devtools_page": "panel\/empty-panel.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png",
        "192": "icons\/icon-192.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon-16-disabled.png",
            "32": "icons\/icon-32-disabled.png",
            "48": "icons\/icon-48-disabled.png",
            "128": "icons\/icon-128-disabled.png",
            "192": "icons\/icon-192-disabled.png"
        },
        "default_popup": "popup\/disabled.html"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "preact-devtools-page.css"
    ]
}