Relatable CRM

An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!

Что такое Relatable CRM?

Relatable CRM - это расширение Chrome, разработанное https://relatable.one, и его основная функция - "An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!".

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

screenshot

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

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

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

                        An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!                    

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

Название Relatable CRM Relatable CRM
ID dbpiijgjfgnelhkmnklfebcnhdlecodc
Официальный URL https://chromewebstore.google.com/detail/relatable-crm/dbpiijgjfgnelhkmnklfebcnhdlecodc
Описание An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!
Размер файла 372 KB
Количество установок 126
Текущая Версия 0.1.1
Последнее Обновление 2023-11-18
Дата публикации 2023-11-02
Рейтинг 3.00/5 Всего 4 оценок
Разработчик https://relatable.one
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.relatable.one
URL страницы помощи https://www.relatable.one
URL страницы политики конфиденциальности https://www.relatable.one/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Relatable CRM",
    "version": "0.1.1",
    "description": "An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost\/*",
            "*:\/\/staging.relatable.one\/*",
            "*:\/\/www.relatable.one\/*"
        ]
    },
    "permissions": [
        "cookies",
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "styles.css",
                "fonts\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "host_permissions": [
        "*:\/\/*.linkedin.com\/",
        "*:\/\/*.relatable.one\/",
        "*:\/\/api.relatable.one\/",
        "http:\/\/localhost\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    }
}