Interact Extension

Construct Self Service Widget

什么是Interact Extension?

Interact Extension是由Arie Schwartzman开发的Chrome扩展程序,该扩展的主要功能是“Construct Self Service Widget”。

扩展截图

screenshot

下载Interact Extension扩展crx文件

下载Interact Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Interact Extension Interact Extension
ID fakflooidhdgokgenanljcbfaefabjbm
官方URL https://chromewebstore.google.com/detail/interact-extension/fakflooidhdgokgenanljcbfaefabjbm
简介 Construct Self Service Widget
文件大小 232 KB
安装次数 0
当前版本 1.4
更新时间 2014-07-09
上架时间 2014-07-09
评分 5.00/5 共3次评分
开发者 Arie Schwartzman
付费类型 free
支持的语言 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"
        }
    ]
}