After publishing my Google Apps app to the Chrome Webstore, it installs as an extension

给你一囗甜甜゛ 提交于 2019-12-05 18:35:31

The eventual answer for this was to ignore the docs and specify both an app section and a DOMAIN_INSTALLABLE and GOOGLE_DRIVE container. Here's our manifest, which is working great - it can be installed from the "Add Marketplace Apps" button in admin.google.com, and also installed from the Chrome Web Store.

{
    "manifest_version": 2,
    "name": "Pear Deck Beta Preview",
    "version": "0.0.0.10",
    "description": "for Active Classrooms",
    "icons": {
        "128": "YOUR_ICON_128x128.png",
        "16": "YOUR_ICON_16x16.png"
    },
    "container": ["DOMAIN_INSTALLABLE", "GOOGLE_DRIVE"],
    "api_console_project_id": "YOUR_ID",
    "app" : {
        "launch" : {
            "web_url" : "https://peardeck.com/home"
        }
    }
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!