Doculife

Extend Doculife functionality to the browser

ما هو Doculife؟

Doculife هو إضافة Chrome تم تطويرها بواسطة Doculife، والميزة الرئيسية لها هي "Extend Doculife functionality to the browser".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Doculife

قم بتنزيل ملفات الامتداد Doculife بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        The Doculife browser extension helps you bookmark links, save videos & photos within your Doculife account.                    

معلومات أساسية عن التمديد

الاسم Doculife Doculife
ID kncpecieidnifieilafkejgkkbfohldf
عنوان URL الرسمي https://chromewebstore.google.com/detail/doculife/kncpecieidnifieilafkejgkkbfohldf
الوصف Extend Doculife functionality to the browser
حجم الملف 81.92 KB
عدد التثبيتات 72
النسخة الحالية 1.5
آخر تحديث 2020-11-11
تاريخ النشر 2020-03-25
تقييم 5.00/5 مجموع تقييمات 13
المطور Doculife
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.doculife.com/
عنوان صفحة سياسة الخصوصية https://www.doculife.com/privacy-policy
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Doculife",
    "version": "1.5",
    "author": "Doculife",
    "description": "Extend Doculife functionality to the browser",
    "-ms-preload": {
        "backgroundScript": "backgroundScriptsAPIBridge.js",
        "contentScript": "contentScriptsAPIBridge.js"
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "48": "icon-48.png",
            "64": "icon-64.png",
            "128": "icon-128.png"
        },
        "default_popup": "popup.html",
        "default_title": "Doculife"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "notifications",
        "https:\/\/*.mydoculife.com\/*",
        "https:\/\/mydoculife.com\/*"
    ],
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mydoculife.com\/*",
                "https:\/\/dev.mydoculife.com\/*"
            ],
            "js": [
                "contentScriptsAPIBridge.js",
                "browser-polyfill.js",
                "content.js"
            ],
            "all_frames": true
        }
    ]
}