Auto Open Add-on

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

What is Auto Open Add-on?

Auto Open Add-on is a Chrome extension developed by https://darsoft.es, and its main feature is "Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.".

Extension Screenshots

screenshot

Download Auto Open Add-on Extension CRX File

Download Auto Open Add-on extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Auto Open Add-on Auto Open Add-on
ID bcjnialkobgkdkbdclhdnbdcdgdcgdlo
Official URL https://chromewebstore.google.com/detail/auto-open-add-on/bcjnialkobgkdkbdclhdnbdcdgdcgdlo
Description Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.
File Size 17.4 KB
Installation Count 783
Current Version 0.28
Last Updated 2021-05-09
Publish Date 2021-04-18
Rating 5.00/5 Total 3 Ratings
Developer https://darsoft.es
Email [email protected]
Payment Type free
Help Page URL http://darsoft.es/contact-us/
Supported Languages 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
}