Auto Open Add-on

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

Was ist Auto Open Add-on?

Auto Open Add-on ist eine Chrome-Erweiterung, die von https://darsoft.es entwickelt wurde, und ihr Hauptmerkmal ist "Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.".

Erweiterungsscreenshots

screenshot

Auto Open Add-on-Erweiterungs-CRX-Datei herunterladen

Laden Sie Auto Open Add-on-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Auto Open Add-on Auto Open Add-on
ID bcjnialkobgkdkbdclhdnbdcdgdcgdlo
Offizielle URL https://chromewebstore.google.com/detail/auto-open-add-on/bcjnialkobgkdkbdclhdnbdcdgdcgdlo
Beschreibung Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.
Dateigröße 17.4 KB
Installationsanzahl 783
Aktuelle Version 0.28
Letztes Update 2021-05-09
Veröffentlichungsdatum 2021-04-18
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler https://darsoft.es
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL http://darsoft.es/contact-us/
Unterstützte Sprachen 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
}