Relatable CRM

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

What is Relatable CRM?

Relatable CRM is a Chrome extension developed by https://relatable.one, and its main feature is "An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!".

Extension Screenshots

screenshot

Download Relatable CRM Extension CRX File

Download Relatable CRM extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Relatable CRM Relatable CRM
ID dbpiijgjfgnelhkmnklfebcnhdlecodc
Official URL https://chromewebstore.google.com/detail/relatable-crm/dbpiijgjfgnelhkmnklfebcnhdlecodc
Description An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!
File Size 372 KB
Installation Count 126
Current Version 0.1.1
Last Updated 2023-11-18
Publish Date 2023-11-02
Rating 3.00/5 Total 4 Ratings
Developer https://relatable.one
Email [email protected]
Payment Type free
Extension Website https://www.relatable.one
Help Page URL https://www.relatable.one
Privacy Policy Page URL https://www.relatable.one/privacy
Supported Languages 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"
    }
}