Rax Developer Tools

Adds Rax debugging tools to the Chrome Developer Tools.

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

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

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

screenshot

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

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

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

                        Rax Developer Tools lets you inspect the Rax component's structure, props and state.                    

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

Όνομα Rax Developer Tools Rax Developer Tools
ID anpeoinhjjligmgoiepbnigjhmijblff
Επίσημο URL https://chromewebstore.google.com/detail/rax-developer-tools/anpeoinhjjligmgoiepbnigjhmijblff
Περιγραφή Adds Rax debugging tools to the Chrome Developer Tools.
Μέγεθος Αρχείου 339 KB
Αριθμός Εγκαταστάσεων 156
Τρέχουσα Έκδοση 3.6.0
Τελευταία Ενημέρωση 2019-11-28
Ημερομηνία Δημοσίευσης 2019-11-27
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής raxjs
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://rax.js.org/
Υποστηριζόμενες Γλώσσες zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Rax Developer Tools",
    "description": "Adds Rax debugging tools to the Chrome Developer Tools.",
    "version": "3.6.0",
    "minimum_chrome_version": "49",
    "icons": {
        "16": "icons\/16-production.png",
        "32": "icons\/32-production.png",
        "48": "icons\/48-production.png",
        "128": "icons\/128-production.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16-disabled.png",
            "32": "icons\/32-disabled.png",
            "48": "icons\/48-disabled.png",
            "128": "icons\/128-disabled.png"
        },
        "default_popup": "popups\/disabled.html"
    },
    "devtools_page": "main.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "main.html",
        "panel.html",
        "build\/backend.js"
    ],
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}