Click2Tel

Click on "tel:" links to copy phone numbers to your clipboard and automatically paste them into the dialer's input field.

Что такое Click2Tel?

Click2Tel - это расширение Chrome, разработанное support, и его основная функция - "Click on "tel:" links to copy phone numbers to your clipboard and automatically paste them into the dialer's input field.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Click2Tel

Скачайте файлы расширений Click2Tel в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Effortlessly click on "tel:" links to copy phone numbers to your clipboard and automatically paste them into the dialer's input field. Save time and make phone calls more convenient with this handy extension.                    

Основная информация о расширении

Название Click2Tel Click2Tel
ID fkmnchglediflnaekcmilminojpockcl
Официальный URL https://chromewebstore.google.com/detail/click2tel/fkmnchglediflnaekcmilminojpockcl
Описание Click on "tel:" links to copy phone numbers to your clipboard and automatically paste them into the dialer's input field.
Размер файла 137 KB
Количество установок 36
Текущая Версия 2.00
Последнее Обновление 2023-05-05
Дата публикации 2023-04-06
Рейтинг 5.00/5 Всего 1 оценок
Разработчик support
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en,nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Click2Tel",
    "description": "Click on \"tel:\" links to copy phone numbers to your clipboard and automatically paste them into the dialer's input field.",
    "version": "2.00",
    "permissions": [
        "clipboardWrite"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "default_locale": "en",
    "icons": {
        "16": "images\/icon16.png",
        "19": "images\/icon19.png",
        "32": "images\/icon32.png",
        "38": "images\/icon38.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}