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
Eメール [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"
    }
}