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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://relatable.one และคุณลักษณะหลักของมันคือ "An extension for the Relatable CRM to allow contacts from third party sites to be added to Relatable - and more!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Relatable CRM

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}