Relatable CRM

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

Wat is Relatable CRM?

Relatable CRM is een Chrome-extensie ontwikkeld door https://relatable.one, en de belangrijkste functie is "An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Relatable CRM

Download Relatable CRM-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

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

Basisinformatie over de Extensie

Naam Relatable CRM Relatable CRM
ID dbpiijgjfgnelhkmnklfebcnhdlecodc
Officiële URL https://chromewebstore.google.com/detail/relatable-crm/dbpiijgjfgnelhkmnklfebcnhdlecodc
Beschrijving An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!
Bestandsgrootte 372 KB
Aantal Installaties 126
Huidige Versie 0.1.1
Laatst Bijgewerkt 2023-11-18
Publicatiedatum 2023-11-02
Beoordeling 3.00/5 Totaal 4 Beoordelingen
Ontwikkelaar https://relatable.one
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.relatable.one
Help Pagina-URL https://www.relatable.one
URL van de Privacybeleid Pagina https://www.relatable.one/privacy
Ondersteunde Talen 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"
    }
}