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
官方網址 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"
    }
}