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
官方URL 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
}