After publishing my Google Apps app in the Chrome Web Store, it installs as an extension

I downloaded the following manifest to submit your Chrome web store

{
  "manifest_version": 2,
  "name": "Pear Deck",
  "version": "0.0.0.1",
  "description": "for Active Classrooms",
  "icons": {
    "128": "icons/google-icon-128x128.png",
    "16": "icons/google-icon-32x32.png"
  },
  "container": ["DOMAIN_INSTALLABLE", "GOOGLE_DRIVE"],
  "api_console_project_id": "1234567890"
}

I fixed the icons, filled out the form, and published trusted testers (just approved).

But ... when my trusted tester account goes to the Chrome Web Store and clicks the install button, the application is added as an extension for Chrome, and not as an application for the domain. I did not specify a site or anything in this manifest (maybe why it thinks I made the extension?), But I thought that it would look for my console project identifier to set it in the disk interface.

, Google Apps Marketplace? " "?

+3
1

, DOMAIN_INSTALLABLE GOOGLE_DRIVE. , - " Marketplace" admin.google.com, - Chrome.

{
    "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"
        }
    }
}
+2

All Articles