ChromeCall

ChromeCall extension to dial numbers directly from web pages

Wat is ChromeCall?

ChromeCall is een Chrome-extensie ontwikkeld door https://oit.co, en de belangrijkste functie is "ChromeCall extension to dial numbers directly from web pages".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie ChromeCall

Download ChromeCall-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        ChromeCall is a tool for OITVOIP users to dial numbers directly from their web page, simply by clicking on it. Access your call history, voicemail and more right from your browser.                    

Basisinformatie over de Extensie

Naam ChromeCall ChromeCall
ID pmhfmheghhjencglkapimohepfndgpac
Officiële URL https://chromewebstore.google.com/detail/chromecall/pmhfmheghhjencglkapimohepfndgpac
Beschrijving ChromeCall extension to dial numbers directly from web pages
Bestandsgrootte 1.82 MB
Aantal Installaties 155
Huidige Versie 1.0.1
Laatst Bijgewerkt 2022-11-16
Publicatiedatum 2019-12-12
Ontwikkelaar https://oit.co
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://oit.co
Help Pagina-URL https://oit.co/contact
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChromeCall",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "description": "ChromeCall extension to dial numbers directly from web pages",
    "version": "1.0.1",
    "action": {
        "default_popup": "html\/menu.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/cc content.css"
            ],
            "js": [
                "js\/jquery-3.3.1.min.js",
                "js\/axios.min.js",
                "js\/rsvp.min.js",
                "config.js",
                "js\/stub.js",
                "js\/search.js",
                "js\/api.js",
                "js\/popup.js",
                "js\/keybind.js",
                "js\/filter.js",
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage",
        "contextMenus"
    ],
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "img\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}