Relatable CRM

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

Co je Relatable CRM?

Relatable CRM je rozšíření Chrome vyvinuté https://relatable.one, a jeho hlavní funkcí je „An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Relatable CRM

Stáhněte si soubory rozšíření Relatable CRM ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Relatable CRM Relatable CRM
ID dbpiijgjfgnelhkmnklfebcnhdlecodc
Oficiální URL https://chromewebstore.google.com/detail/relatable-crm/dbpiijgjfgnelhkmnklfebcnhdlecodc
Popis An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!
Velikost souboru 372 KB
Počet instalací 126
Aktuální Verze 0.1.1
Poslední Aktualizace 2023-11-18
Datum Vydání 2023-11-02
Hodnocení 3.00/5 Celkem 4 Hodnocení
Vývojář https://relatable.one
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.relatable.one
URL Stránky Nápovědy https://www.relatable.one
URL Stránky Zásad Ochrany Soukromí https://www.relatable.one/privacy
Podporované Jazyky 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"
    }
}