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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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
        }
    ]
}