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」です。

拡張機能のスクリーンショット

screenshot

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 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
        }
    ]
}