Relatable CRM

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

Cos'è Relatable CRM?

Relatable CRM è un'estensione di Chrome sviluppata da https://relatable.one, e la sua funzione principale è "An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Relatable CRM

Scarica i file di estensione Relatable CRM in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Relatable CRM Relatable CRM
ID dbpiijgjfgnelhkmnklfebcnhdlecodc
URL Ufficiale https://chromewebstore.google.com/detail/relatable-crm/dbpiijgjfgnelhkmnklfebcnhdlecodc
Descrizione An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!
Dimensione del File 372 KB
Conteggio Installazioni 126
Versione Corrente 0.1.1
Ultimo Aggiornamento 2023-11-18
Data di Pubblicazione 2023-11-02
Valutazione 3.00/5 Totale 4 Valutazioni
Sviluppatore https://relatable.one
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.relatable.one
URL della Pagina di Aiuto https://www.relatable.one
URL della Pagina della Politica sulla Privacy https://www.relatable.one/privacy
Lingue Supportate 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"
    }
}