Auto Open Add-on

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

Wat is Auto Open Add-on?

Auto Open Add-on is een Chrome-extensie ontwikkeld door https://darsoft.es, en de belangrijkste functie is "Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Auto Open Add-on

Download Auto Open Add-on-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Auto Open Add-on Auto Open Add-on
ID bcjnialkobgkdkbdclhdnbdcdgdcgdlo
Officiële URL https://chromewebstore.google.com/detail/auto-open-add-on/bcjnialkobgkdkbdclhdnbdcdgdcgdlo
Beschrijving Auto open the selected add-on when Gmail, Calendar, Drive or Docs starts.
Bestandsgrootte 17.4 KB
Aantal Installaties 783
Huidige Versie 0.28
Laatst Bijgewerkt 2021-05-09
Publicatiedatum 2021-04-18
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar https://darsoft.es
E-mail [email protected]
Betalingswijze free
Help Pagina-URL http://darsoft.es/contact-us/
Ondersteunde Talen 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
}