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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}