Doculife

Extend Doculife functionality to the browser

Was ist Doculife?

Doculife ist eine Chrome-Erweiterung, die von Doculife entwickelt wurde, und ihr Hauptmerkmal ist "Extend Doculife functionality to the browser".

Erweiterungsscreenshots

screenshot

Doculife-Erweiterungs-CRX-Datei herunterladen

Laden Sie Doculife-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Doculife Doculife
ID kncpecieidnifieilafkejgkkbfohldf
Offizielle URL https://chromewebstore.google.com/detail/doculife/kncpecieidnifieilafkejgkkbfohldf
Beschreibung Extend Doculife functionality to the browser
Dateigröße 81.92 KB
Installationsanzahl 72
Aktuelle Version 1.5
Letztes Update 2020-11-11
Veröffentlichungsdatum 2020-03-25
Bewertung 5.00/5 Insgesamt 13 Bewertungen
Entwickler Doculife
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.doculife.com/
URL der Datenschutzrichtlinien-Seite https://www.doculife.com/privacy-policy
Unterstützte Sprachen 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
        }
    ]
}