Relatable CRM

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

什么是Relatable CRM?

Relatable CRM是由https://relatable.one开发的Chrome扩展程序,该扩展的主要功能是“An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!”。

扩展截图

screenshot

下载Relatable CRM扩展crx文件

下载Relatable CRM扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Relatable CRM Relatable CRM
ID dbpiijgjfgnelhkmnklfebcnhdlecodc
官方URL https://chromewebstore.google.com/detail/relatable-crm/dbpiijgjfgnelhkmnklfebcnhdlecodc
简介 An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!
文件大小 372 KB
安装次数 126
当前版本 0.1.1
更新时间 2023-11-18
上架时间 2023-11-02
评分 3.00/5 共4次评分
开发者 https://relatable.one
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.relatable.one
帮助页面URL https://www.relatable.one
隐私政策页面URL https://www.relatable.one/privacy
支持的语言 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"
    }
}