Interact Extension
Construct Self Service Widget
What is Interact Extension?
Interact Extension is a Chrome extension developed by Arie Schwartzman, and its main feature is "Construct Self Service Widget".
Extension Screenshots
Download Interact Extension Extension CRX File
Download Interact Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension allows you to test and construct iframe html element to be embedded in host page of the Jacada Interact Self Service Widget
Extension Basic Information
Name | Interact Extension |
ID | fakflooidhdgokgenanljcbfaefabjbm |
Official URL | https://chromewebstore.google.com/detail/interact-extension/fakflooidhdgokgenanljcbfaefabjbm |
Description | Construct Self Service Widget |
File Size | 232 KB |
Installation Count | 0 |
Current Version | 1.4 |
Last Updated | 2014-07-09 |
Publish Date | 2014-07-09 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Arie Schwartzman |
Payment Type | free |
Supported Languages | 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" } ] } |