Aloware Click-To-Call

Enables Click-To-Call functionality for phone numbers found in web pages.

Vad är Aloware Click-To-Call?

Aloware Click-To-Call är en Chrome-tillägg utvecklad av https://www.aloware.com, och dess huvudfunktion är "Enables Click-To-Call functionality for phone numbers found in web pages.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Aloware Click-To-Call-förlängningens CRX-fil

Ladda ner Aloware Click-To-Call-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Aloware's Chrome extension allows calling & texting phone numbers found on a webpage. This extension opens the Aloware desktop app (or web app), so you can get in touch with your customers in no time! 
Also, we can import all numbers you see on the page to our power dialer for faster-than-ever connectivity.                    

Grundläggande Information om Tillägg

Namn Aloware Click-To-Call Aloware Click-To-Call
ID kmchiimcbhaaadgpnelddelgiaeahobi
Officiell webbadress https://chromewebstore.google.com/detail/aloware-click-to-call/kmchiimcbhaaadgpnelddelgiaeahobi
Beskrivning Enables Click-To-Call functionality for phone numbers found in web pages.
Filstorlek 11.52 MB
Antal Installationer 2,670
Aktuell Version 2.2.4
Senast Uppdaterad 2023-01-19
Publiceringsdatum 2020-05-03
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare https://www.aloware.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://aloware.com
Hjälpsida URL https://support.aloware.com
URL till Sekretesspolicy Sidan https://aloware.com/privacy-policy
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Aloware Click-To-Call",
    "description": "Enables Click-To-Call functionality for phone numbers found in web pages.",
    "version": "2.2.4",
    "manifest_version": 2,
    "homepage_url": "http:\/\/localhost:3000\/",
    "default_locale": "en",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "notifications",
        "contextMenus",
        "",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "icons\/app-icon-16_x_16.png",
        "48": "icons\/app-icon-48_x_48.png",
        "128": "icons\/app-icon-128_x_128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' ; object-src 'self'",
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Aloware Click-To-Call",
        "default_icon": {
            "19": "icons\/app-icon-19_x_19.png",
            "38": "icons\/app-icon-38_x_38.png"
        }
    },
    "web_accessible_resources": [
        "img\/call.png",
        "img\/contact.png"
    ]
}