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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://www.relatable.one
عنوان صفحة سياسة الخصوصية 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"
    }
}