IMA.js Developer Tools

Adds IMA.js debugging panel to the Chrome Developer Tools window.

Qu'est-ce que IMA.js Developer Tools ?

IMA.js Developer Tools est une extension Chrome développée par Seznam.cz, et sa fonction principale est "Adds IMA.js debugging panel to the Chrome Developer Tools window.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension IMA.js Developer Tools

Téléchargez les fichiers d'extension IMA.js Developer Tools au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        IMA.js is a Javascript framework for creating isomorphic applications built on the MVC pattern which uses React for the View layer.

The IMA.js developer tools display messages about method and event calls happening in your IMA.js application. These events are wrapped in proxy-like objects using custom script that gets injected to a page. You can then filter these messages, analyze them, which can help you debug how each component behaves in your application and find potential issues.                    

Informations de Base sur l'Extension

Nom IMA.js Developer Tools IMA.js Developer Tools
ID jckgkffefmgcnbaimdmeoelgpjefpljh
URL Officiel https://chromewebstore.google.com/detail/imajs-developer-tools/jckgkffefmgcnbaimdmeoelgpjefpljh
Description Adds IMA.js debugging panel to the Chrome Developer Tools window.
Taille du Fichier 231 KB
Nombre d'Installations 25
Version Actuelle 0.3.3
Dernière Mise à Jour 2022-04-19
Date de Publication 2020-03-26
Développeur Seznam.cz
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://imajs.io/
URL de la Page d'Aide https://imajs.io/docs/devtools-introduction
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMA.js Developer Tools",
    "description": "Adds IMA.js debugging panel to the Chrome Developer Tools window.",
    "devtools_page": "html\/devtools.html",
    "permissions": [
        "",
        "webNavigation",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_page": "html\/options.html",
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "images\/icon-dead-16.png",
            "32": "images\/icon-dead-32.png",
            "48": "images\/icon-dead-48.png",
            "128": "images\/icon-dead-128.png"
        }
    },
    "icons": {
        "16": "images\/icon-alive-16.png",
        "32": "images\/icon-alive-32.png",
        "48": "images\/icon-alive-48.png",
        "128": "images\/icon-alive-128.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "version": "0.3.3"
}