Relatable CRM

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

Relatable CRM là gì?

Relatable CRM là một tiện ích mở rộng Chrome được phát triển bởi https://relatable.one, và tính năng chính của nó là "An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Relatable CRM

Tải xuống các tệp mở rộng Relatable CRM dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Relatable CRM Relatable CRM
ID dbpiijgjfgnelhkmnklfebcnhdlecodc
URL Chính Thức https://chromewebstore.google.com/detail/relatable-crm/dbpiijgjfgnelhkmnklfebcnhdlecodc
Mô tả An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!
Kích Thước Tệp 372 KB
Số Lần Cài Đặt 126
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2023-11-18
Ngày Phát Hành 2023-11-02
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://relatable.one
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.relatable.one
URL Trang Trợ Giúp https://www.relatable.one
URL Trang Chính Sách Bảo Mật https://www.relatable.one/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}