Relatable CRM

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

O que é Relatable CRM?

Relatable CRM é uma extensão do Chrome desenvolvida por https://relatable.one, e sua principal característica é "An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Relatable CRM

Baixe arquivos de extensão Relatable CRM no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Relatable CRM Relatable CRM
ID dbpiijgjfgnelhkmnklfebcnhdlecodc
URL Oficial https://chromewebstore.google.com/detail/relatable-crm/dbpiijgjfgnelhkmnklfebcnhdlecodc
Descrição An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!
Tamanho do Arquivo 372 KB
Contagem de Instalações 126
Versão Atual 0.1.1
Última Atualização 2023-11-18
Data de Publicação 2023-11-02
Classificação 3.00/5 Total de 4 Avaliações
Desenvolvedor https://relatable.one
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.relatable.one
URL da Página de Ajuda https://www.relatable.one
URL da Página de Política de Privacidade https://www.relatable.one/privacy
Idiomas Suportados 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"
    }
}