Yodel.io Business Phone System

Click to call via yodel.io

Yodel.io Business Phone Systemคืออะไร?

Yodel.io Business Phone System เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://yodel.io และคุณลักษณะหลักของมันคือ "Click to call via yodel.io"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Yodel.io Business Phone System

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
        }
    ]
}