ChromeCall
ChromeCall extension to dial numbers directly from web pages
什麼是ChromeCall?
ChromeCall是由https://oit.co開發的Chrome擴展程式,該擴展的主要功能是“ChromeCall extension to dial numbers directly from web pages”。
擴展截圖
下載ChromeCall擴展crx文件
下載ChromeCall擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
ChromeCall is a tool for OITVOIP users to dial numbers directly from their web page, simply by clicking on it. Access your call history, voicemail and more right from your browser. 擴展基本資訊
| 名稱 | |
| ID | pmhfmheghhjencglkapimohepfndgpac |
| 官方網址 | https://chromewebstore.google.com/detail/chromecall/pmhfmheghhjencglkapimohepfndgpac |
| 簡介 | ChromeCall extension to dial numbers directly from web pages |
| 檔案大小 | 1.82 MB |
| 安裝次數 | 155 |
| 目前版本 | 1.0.1 |
| 更新時間 | 2022-11-16 |
| 上架時間 | 2019-12-12 |
| 開發者 | https://oit.co |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://oit.co |
| 說明頁面URL | https://oit.co/contact |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ChromeCall",
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"description": "ChromeCall extension to dial numbers directly from web pages",
"version": "1.0.1",
"action": {
"default_popup": "html\/menu.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"css\/cc content.css"
],
"js": [
"js\/jquery-3.3.1.min.js",
"js\/axios.min.js",
"js\/rsvp.min.js",
"config.js",
"js\/stub.js",
"js\/search.js",
"js\/api.js",
"js\/popup.js",
"js\/keybind.js",
"js\/filter.js",
"js\/content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"background": {
"service_worker": "js\/background.js"
},
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"tabs",
"storage",
"contextMenus"
],
"manifest_version": 3,
"web_accessible_resources": [
{
"resources": [
"img\/*"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
]
} | |