Auto Open Add-on

Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.

什麼是Auto Open Add-on?

Auto Open Add-on是由https://darsoft.es開發的Chrome擴展程式,該擴展的主要功能是“Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.”。

擴展截圖

screenshot

下載Auto Open Add-on擴展crx文件

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

擴展使用說明

                        This extension automatically opens the Workspace addon you like when the Google service is started in your browser (addon sidebar is shown on page load). It supports addons from Gmail, Google Calendar, Google Drive and Google Docs.                    

擴展基本資訊

名稱 Auto Open Add-on Auto Open Add-on
ID bcjnialkobgkdkbdclhdnbdcdgdcgdlo
官方網址 https://chromewebstore.google.com/detail/auto-open-add-on/bcjnialkobgkdkbdclhdnbdcdgdcgdlo
簡介 Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.
檔案大小 17.4 KB
安裝次數 783
目前版本 0.28
更新時間 2021-05-09
上架時間 2021-04-18
評分 5.00/5 共 3 次評分
開發者 https://darsoft.es
電子郵箱 [email protected]
付費類型 free
說明頁面URL http://darsoft.es/contact-us/
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Open Add-on",
    "version": "0.28",
    "description": "Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.",
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/calendar.google.com\/*",
                "https:\/\/drive.google.com\/*",
                "https:\/\/docs.google.com\/*"
            ],
            "js": [
                "autoopenaddon.js"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_title": "Auto Open Add-on",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/autoopenaddon16.png",
            "32": "images\/autoopenaddon32.png",
            "48": "images\/autoopenaddon48.png",
            "128": "images\/autoopenaddon128.png"
        }
    },
    "icons": {
        "16": "images\/autoopenaddon16.png",
        "32": "images\/autoopenaddon32.png",
        "48": "images\/autoopenaddon48.png",
        "128": "images\/autoopenaddon128.png"
    },
    "manifest_version": 2
}