Dialr

Converts phone numbers to clickable links that launch your favorite calling services

Dialrคืออะไร?

Dialr เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ayush.mehra และคุณลักษณะหลักของมันคือ "Converts phone numbers to clickable links that launch your favorite calling services"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dialr

ดาวน์โหลดไฟล์ส่วนขยาย Dialr ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Dialr is a very light-weight extension that automatically converts all phone numbers into links that can launch your favorite calling services: 

    -FaceTime (audio)
    -Google Hangouts (voice)
    -Skype

It is configurable to display only the service(s) you want to use and displays converted phone numbers in a very nonintrusive manner. It can also be turned off for specific websites.

FaceTime (audio) is recommended for Mac users with a paired iPhone that they can place calls through. For anyone else, this link will launch the default application set by your computer to handle "tel:" links (if available).

Google Hangouts (voice) requires a Google id. Most calls within North America are free and can be placed directly through the browser (it does not launch a new application).

You must have Skype installed on your computer to use the Skype option.

Try Dialr for free today!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Dialr Dialr
ID nhbkmpocflnhfbjjgnjdghmgjdhiokfd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/dialr/nhbkmpocflnhfbjjgnjdghmgjdhiokfd
คำอธิบาย Converts phone numbers to clickable links that launch your favorite calling services
ขนาดไฟล์ 556 KB
จำนวนการติดตั้ง 993
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-07-04
วันที่เผยแพร่ 2016-07-04
คะแนน 3.16/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา ayush.mehra
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dialr",
    "description": "Converts phone numbers to clickable links that launch your favorite calling services",
    "version": "1.0",
    "options_page": "dialr_options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/dialr.css"
            ],
            "js": [
                "js\/jQuery.js",
                "js\/dialr.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icons\/logo_19.png",
            "38": "images\/icons\/logo_38.png"
        },
        "default_title": "Dialr",
        "default_popup": "dialr_popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "images\/*",
        "css\/*",
        "js\/*"
    ],
    "icons": {
        "16": "images\/icons\/logo_16.png",
        "32": "images\/icons\/logo_32.png",
        "48": "images\/icons\/logo_48.png",
        "128": "images\/icons\/logo_128.png"
    }
}