Interact Extension
Construct Self Service Widget
Interact Extensionとは何ですか?
Interact ExtensionはArie Schwartzmanによって開発されたChromeの拡張機能で、その主な機能は「Construct Self Service Widget」です。
拡張機能のスクリーンショット
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                     拡張機能の基本情報
| 名前 |   |  
| 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"
        }
    ]
}  |  |