Yodel.io Business Phone System
Click to call via yodel.io
什麼是Yodel.io Business Phone System?
Yodel.io Business Phone System是由https://yodel.io開發的Chrome擴展程式,該擴展的主要功能是“Click to call via yodel.io”。
擴展截圖
下載Yodel.io Business Phone System擴展crx文件
下載Yodel.io Business Phone System擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Use the Yodel.io Chrome extension to click any phone number on a website to call out via Yodel.io.
Information about permissions
- We need to read and change data on all websites to find phone numbers and replace them with links
- The extension runs entirely within the browser and does not send data to any server
- The source code can be seen and reviewed here: https://github.com/YodelTalk/yodel-extension 擴展基本資訊
| 名稱 | |
| ID | nmhjelifgdhoklhnbpehfigiikmiihjc |
| 官方網址 | https://chromewebstore.google.com/detail/yodelio-business-phone-sy/nmhjelifgdhoklhnbpehfigiikmiihjc |
| 簡介 | Click to call via yodel.io |
| 檔案大小 | 112 KB |
| 安裝次數 | 277 |
| 目前版本 | 0.9.0 |
| 更新時間 | 2019-03-14 |
| 上架時間 | 2019-03-14 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | https://yodel.io |
| 付費類型 | free |
| 擴展官網 | https://www.yodel.io |
| 說明頁面URL | https://help.yodel.io/support/solutions/articles/36000070682-google-chrome-extension |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Yodel.io Business Phone System",
"short_name": "Yodel",
"version": "0.9.0",
"description": "Click to call via yodel.io",
"author": "YodelTalk",
"homepage_url": "https:\/\/www.yodel.io",
"manifest_version": 2,
"icons": {
"32": "icons\/yodel-32.png",
"48": "icons\/yodel-48.png",
"96": "icons\/yodel-96.png",
"128": "icons\/yodel-128.png"
},
"browser_action": {
"default_icon": {
"19": "icons\/toolbar.png",
"38": "icons\/[email protected]"
},
"default_popup": "options.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": [
"storage",
"tabs",
"contextMenus"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_end",
"all_frames": true
}
]
} | |