Thomson One Bridge
Allows communication from JavaScript to the Thomson One application.
什麼是Thomson One Bridge?
Thomson One Bridge是由https://smartclient.thomsonone.com開發的Chrome擴展程式,該擴展的主要功能是“Allows communication from JavaScript to the Thomson One application.”。
擴展截圖
下載Thomson One Bridge擴展crx文件
下載Thomson One Bridge擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Send a message to a native application.
Communicate from web page hosted in Chrome to Thomson One Application 擴展基本資訊
| 名稱 | |
| ID | jhliejnplnepgejmngakdhkbgjbbhjop |
| 官方網址 | https://chromewebstore.google.com/detail/thomson-one-bridge/jhliejnplnepgejmngakdhkbgjbbhjop |
| 簡介 | Allows communication from JavaScript to the Thomson One application. |
| 檔案大小 | 16.32 KB |
| 安裝次數 | 10,000 |
| 目前版本 | 1.0.0.27 |
| 更新時間 | 2022-09-28 |
| 上架時間 | 2019-12-06 |
| 開發者 | https://smartclient.thomsonone.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 隱私政策頁面URL | https://www.refinitiv.com/en/policies/privacy-statement |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Thomson One Bridge",
"version": "1.0.0.27",
"manifest_version": 3,
"description": "Allows communication from JavaScript to the Thomson One application.",
"icons": {
"128": "Logo-128.png"
},
"action": {
"default_icon": {
"16": "Logo-16.png",
"24": "Logo-24.png",
"32": "Logo-32.png",
"64": "Logo-64.png",
"128": "Logo-128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.thomsonone.com\/*",
"*:\/\/*.thomsononeqa.com\/*",
"*:\/\/*.ampf.com\/*",
"*:\/\/*.ameriprise.com\/*",
"*:\/\/*.advisor-connection.com\/*",
"*:\/\/*.force.com\/*",
"*:\/\/*.visualforce.com\/*",
"*:\/\/*.thomsonreuters.com\/*",
"*:\/\/*.refinitiv.com\/*",
"*:\/\/*.pwj.com\/*",
"*:\/\/*.bonddesk.com\/*",
"*:\/\/*.dadco.com\/*",
"*:\/\/*.tradewebdirect.com\/*",
"*:\/\/*.tradeweb.com\/*",
"*:\/\/*.jmsonline.com\/*",
"*:\/\/*.myjanney.com\/*",
"*:\/\/*.advisorcompass.com\/*"
],
"js": [
"Contentscript.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"externally_connectable": {
"matches": [
"*:\/\/*.thomsonone.com\/*",
"*:\/\/*.thomsononeqa.com\/*",
"*:\/\/*.dev.ampf.com\/*",
"*:\/\/*.ameriprise.com\/*",
"*:\/\/*.advisor-connection.com\/*",
"*:\/\/*.force.com\/*",
"*:\/\/*.visualforce.com\/*",
"*:\/\/*.thomsonreuters.com\/*",
"*:\/\/*.refinitiv.com\/*",
"*:\/\/*.pwj.com\/*",
"*:\/\/*.bonddesk.com\/*",
"*:\/\/*.dadco.com\/*",
"*:\/\/*.tradewebdirect.com\/*",
"*:\/\/*.tradeweb.com\/*",
"*:\/\/*.jmsonline.com\/*",
"*:\/\/*.myjanney.com\/*",
"*:\/\/*.advisorcompass.com\/*"
]
},
"permissions": [
"nativeMessaging"
]
} | |