Doculife

Extend Doculife functionality to the browser

What is Doculife?

Doculife is a Chrome extension developed by Doculife, and its main feature is "Extend Doculife functionality to the browser".

Extension Screenshots

screenshot

Download Doculife Extension CRX File

Download Doculife extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Doculife Doculife
ID kncpecieidnifieilafkejgkkbfohldf
Official URL https://chromewebstore.google.com/detail/doculife/kncpecieidnifieilafkejgkkbfohldf
Description Extend Doculife functionality to the browser
File Size 81.92 KB
Installation Count 72
Current Version 1.5
Last Updated 2020-11-11
Publish Date 2020-03-25
Rating 5.00/5 Total 13 Ratings
Developer Doculife
Email [email protected]
Payment Type free
Extension Website https://www.doculife.com/
Privacy Policy Page URL https://www.doculife.com/privacy-policy
Supported Languages 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
        }
    ]
}