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
扩展基本信息
名称 | Yodel.io Business Phone System |
ID | nmhjelifgdhoklhnbpehfigiikmiihjc |
官方URL | 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 } ] } |