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 |
| 官方網址 | 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"
}
]
} | |