Doculife

Extend Doculife functionality to the browser

Hvad er Doculife?

Doculife er en Chrome-udvidelse udviklet af Doculife, og dens hovedfunktion er "Extend Doculife functionality to the browser".

Udvidelsesskærmbilleder

screenshot

Download Doculife-udvidelses-CRX-fil

Download Doculife-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Doculife Doculife
ID kncpecieidnifieilafkejgkkbfohldf
Officiel URL https://chromewebstore.google.com/detail/doculife/kncpecieidnifieilafkejgkkbfohldf
Beskrivelse Extend Doculife functionality to the browser
Filstørrelse 81.92 KB
Antal Installationer 72
Nuværende Version 1.5
Senest Opdateret 2020-11-11
Udgivelsesdato 2020-03-25
Bedømmelse 5.00/5 Samlet 13 Bedømmelser
Udvikler Doculife
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.doculife.com/
URL til Fortrolighedspolitik Side https://www.doculife.com/privacy-policy
Understøttede Sprog 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
        }
    ]
}