USB Digital Sign
Connect web and java application for usb digital sign
什麼是USB Digital Sign?
USB Digital Sign是由FTI開發的Chrome擴展程式,該擴展的主要功能是“Connect web and java application for usb digital sign”。
擴展截圖
下載USB Digital Sign擴展crx文件
下載USB Digital Sign擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The Extension supports to communicate between web page and java sign application 擴展基本資訊
| 名稱 | |
| ID | bimhgondomiohgkheomeimhmglemfinc |
| 官方網址 | https://chrome.google.com/webstore/detail/usb-digital-sign/bimhgondomiohgkheomeimhmglemfinc |
| 簡介 | Connect web and java application for usb digital sign |
| 檔案大小 | 24.3 KB |
| 安裝次數 | 72 |
| 目前版本 | 1.0.1 |
| 更新時間 | 2020-09-18 |
| 上架時間 | 2020-09-18 |
| 開發者 | FTI |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "USB Digital Sign",
"version": "1.0.1",
"manifest_version": 2,
"description": "Connect web and java application for usb digital sign",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"background": {
"scripts": [
"main.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*.devvas.xyz\/*",
"*:\/\/*.invoice.fpt.work\/*",
"*:\/\/*.invoice.fptdata.com\/*"
],
"js": [
"main.js"
]
}
],
"permissions": [
"nativeMessaging",
"*:\/\/*.devvas.xyz\/*",
"*:\/\/*.invoice.fpt.work\/*",
"*:\/\/*.invoice.fptdata.com\/*"
],
"externally_connectable": {
"matches": [
"*:\/\/*.devvas.xyz\/*",
"*:\/\/*.invoice.fpt.work\/*",
"*:\/\/*.invoice.fptdata.com\/*"
]
}
} | |