Relatable CRM

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

Vad är Relatable CRM?

Relatable CRM är en Chrome-tillägg utvecklad av https://relatable.one, och dess huvudfunktion är "An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!".

Tilläggsskärmbilder

screenshot

Ladda ner Relatable CRM-förlängningens CRX-fil

Ladda ner Relatable CRM-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Relatable CRM Relatable CRM
ID dbpiijgjfgnelhkmnklfebcnhdlecodc
Officiell webbadress https://chromewebstore.google.com/detail/relatable-crm/dbpiijgjfgnelhkmnklfebcnhdlecodc
Beskrivning An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!
Filstorlek 372 KB
Antal Installationer 126
Aktuell Version 0.1.1
Senast Uppdaterad 2023-11-18
Publiceringsdatum 2023-11-02
Betyg 3.00/5 Totalt 4 Betyg
Utvecklare https://relatable.one
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.relatable.one
Hjälpsida URL https://www.relatable.one
URL till Sekretesspolicy Sidan https://www.relatable.one/privacy
Stödda Språk 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"
    }
}