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
Eメール [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
}