Interact Extension

Construct Self Service Widget

Qu'est-ce que Interact Extension ?

Interact Extension est une extension Chrome développée par Arie Schwartzman, et sa fonction principale est "Construct Self Service Widget".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Interact Extension

Téléchargez les fichiers d'extension Interact Extension 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

                        This extension allows you to test and construct iframe html element to be embedded in host page of the Jacada Interact Self Service Widget                    

Informations de Base sur l'Extension

Nom Interact Extension Interact Extension
ID fakflooidhdgokgenanljcbfaefabjbm
URL Officiel https://chromewebstore.google.com/detail/interact-extension/fakflooidhdgokgenanljcbfaefabjbm
Description Construct Self Service Widget
Taille du Fichier 232 KB
Nombre d'Installations 0
Version Actuelle 1.4
Dernière Mise à Jour 2014-07-09
Date de Publication 2014-07-09
Évaluation 5.00/5 Total 3 Évaluations
Développeur Arie Schwartzman
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Interact Extension",
    "manifest_version": 2,
    "version": "1.4",
    "description": "Construct Self Service Widget",
    "browser_action": {
        "default_title": "Self Service Widget",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "postmessage.js",
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ]
}