Yodel.io Business Phone System

Click to call via yodel.io

Yodel.io Business Phone System là gì?

Yodel.io Business Phone System là một tiện ích mở rộng Chrome được phát triển bởi https://yodel.io, và tính năng chính của nó là "Click to call via yodel.io".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Yodel.io Business Phone System

Tải xuống các tệp mở rộng Yodel.io Business Phone System dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Yodel.io Business Phone System Yodel.io Business Phone System
ID nmhjelifgdhoklhnbpehfigiikmiihjc
URL Chính Thức https://chromewebstore.google.com/detail/yodelio-business-phone-sy/nmhjelifgdhoklhnbpehfigiikmiihjc
Mô tả Click to call via yodel.io
Kích Thước Tệp 112 KB
Số Lần Cài Đặt 277
Phiên Bản Hiện Tại 0.9.0
Cập Nhật Lần Cuối 2019-03-14
Ngày Phát Hành 2019-03-14
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://yodel.io
Loại Thanh Toán free
Trang Web Mở Rộng https://www.yodel.io
URL Trang Trợ Giúp https://help.yodel.io/support/solutions/articles/36000070682-google-chrome-extension
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}