YouNeed Phone

The YouNeed extension to start phone calls from web pages

Vad är YouNeed Phone?

YouNeed Phone är en Chrome-tillägg utvecklad av YouNeed®, och dess huvudfunktion är "The YouNeed extension to start phone calls from web pages".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner YouNeed Phone-förlängningens CRX-fil

Ladda ner YouNeed Phone-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

                        This extension allows YouNeed® users to start phone calls directly from web pages.

While using Chrome to browse the web, they will be able to click phone numbers and a YouNeed® phone call will start.

Also, this extension helps to receive more easily phone calls on a YouNeed® extension.                    

Grundläggande Information om Tillägg

Namn YouNeed Phone YouNeed Phone
ID jjonhbifjclnpdicimalddgfjfbfefci
Officiell webbadress https://chrome.google.com/webstore/detail/youneed-phone/jjonhbifjclnpdicimalddgfjfbfefci
Beskrivning The YouNeed extension to start phone calls from web pages
Filstorlek 31.39 KB
Antal Installationer 289
Aktuell Version 1.0.1
Senast Uppdaterad 2021-10-19
Publiceringsdatum 2021-05-17
Utvecklare YouNeed®
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://youneed.it
URL till Sekretesspolicy Sidan https://www.ambrogio.com/policy/policy-privacy.html
Stödda Språk it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouNeed Phone",
    "version": "1.0.1",
    "description": "The YouNeed extension to start phone calls from web pages",
    "manifest_version": 3,
    "permissions": [
        "cookies",
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.web.youneed.it\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "action": [],
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": false,
            "js": [
                "content_script.js"
            ]
        }
    ]
}