Interact Extension

Construct Self Service Widget

Co je Interact Extension?

Interact Extension je rozšíření Chrome vyvinuté Arie Schwartzman, a jeho hlavní funkcí je „Construct Self Service Widget“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Interact Extension

Stáhněte si soubory rozšíření Interact Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Interact Extension Interact Extension
ID fakflooidhdgokgenanljcbfaefabjbm
Oficiální URL https://chromewebstore.google.com/detail/interact-extension/fakflooidhdgokgenanljcbfaefabjbm
Popis Construct Self Service Widget
Velikost souboru 232 KB
Počet instalací 0
Aktuální Verze 1.4
Poslední Aktualizace 2014-07-09
Datum Vydání 2014-07-09
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář Arie Schwartzman
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}