Relatable CRM

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

Was ist Relatable CRM?

Relatable CRM ist eine Chrome-Erweiterung, die von https://relatable.one entwickelt wurde, und ihr Hauptmerkmal ist "An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!".

Erweiterungsscreenshots

screenshot

Relatable CRM-Erweiterungs-CRX-Datei herunterladen

Laden Sie Relatable CRM-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Relatable CRM Relatable CRM
ID dbpiijgjfgnelhkmnklfebcnhdlecodc
Offizielle URL https://chromewebstore.google.com/detail/relatable-crm/dbpiijgjfgnelhkmnklfebcnhdlecodc
Beschreibung An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!
Dateigröße 372 KB
Installationsanzahl 126
Aktuelle Version 0.1.1
Letztes Update 2023-11-18
Veröffentlichungsdatum 2023-11-02
Bewertung 3.00/5 Insgesamt 4 Bewertungen
Entwickler https://relatable.one
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.relatable.one
Hilfeseite URL https://www.relatable.one
URL der Datenschutzrichtlinien-Seite https://www.relatable.one/privacy
Unterstützte Sprachen 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"
    }
}