Doculife

Extend Doculife functionality to the browser

什麼是Doculife?

Doculife是由Doculife開發的Chrome擴展程式,該擴展的主要功能是“Extend Doculife functionality to the browser”。

擴展截圖

screenshot

下載Doculife擴展crx文件

下載Doculife擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Doculife Doculife
ID kncpecieidnifieilafkejgkkbfohldf
官方網址 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/
隱私政策頁面URL 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
        }
    ]
}