Relatable CRM

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

Hvad er Relatable CRM?

Relatable CRM er en Chrome-udvidelse udviklet af https://relatable.one, og dens hovedfunktion er "An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!".

Udvidelsesskærmbilleder

screenshot

Download Relatable CRM-udvidelses-CRX-fil

Download Relatable CRM-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Relatable CRM Relatable CRM
ID dbpiijgjfgnelhkmnklfebcnhdlecodc
Officiel URL https://chromewebstore.google.com/detail/relatable-crm/dbpiijgjfgnelhkmnklfebcnhdlecodc
Beskrivelse An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!
Filstørrelse 372 KB
Antal Installationer 126
Nuværende Version 0.1.1
Senest Opdateret 2023-11-18
Udgivelsesdato 2023-11-02
Bedømmelse 3.00/5 Samlet 4 Bedømmelser
Udvikler https://relatable.one
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.relatable.one
Hjælpeside-URL https://www.relatable.one
URL til Fortrolighedspolitik Side https://www.relatable.one/privacy
Understøttede Sprog 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"
    }
}