Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reason for installation through Chrome Web Store

Is there a technical reason, why a Google Drive application must be installed through the Chrome Web Store (which severely limits the number of potential users)?

like image 548
Ruediger Jungbeck Avatar asked May 06 '12 21:05

Ruediger Jungbeck


People also ask

What is Chrome Web Store used for?

You can find apps, extensions, and browser themes for the Google Chrome browser in the Chrome Web Store. With these additions, you can do more with Chrome. You can use apps to create documents, edit photos, play games, listen to music, and more.

Is it safe to download apps from Chrome Web Store?

Use Chrome Web StoreThe Chrome Web Store is the most secure place to install extensions for your Chrome browser. The store has over 190,000 extensions and web apps.

Why do we need Chrome extensions?

Extensions are small software programs that customize the browsing experience. They enable users to tailor Chrome functionality and behavior to individual needs or preferences. They are built on web technologies such as HTML, JavaScript, and CSS.


2 Answers

The reason that installation is required is to give users the ability to access applications from within the Google Drive user interface. Without installation, users would have no starting point for most applications, as they would not be able to start at a specific file, and then choose an application.

That said, I realize it can be difficult to work with in early development. We (the Google Drive team) are evaluating if we should remove this requirement or not. I suspect we'll have a final answer/solution in the next few weeks.

Update: We have removed the installation requirement. Chrome Web Store installation is no longer required for an app to work with a user's Drive transparently, but it is still required to take advantage of Google Drive UI integrations.

like image 60
Vic Fryzel Avatar answered Nov 20 '22 23:11

Vic Fryzel


To provide the create->xxx behaviour that makes a new application document from the drive interface, and to be able to open existing documents from links, there must be some kind of manifest registered with Google's systems and some kind of agreement from the user that an application can access your documents and work with specific file types. There's little way around this when you think about the effects of not doing this.

That said, there are two high level issues that make for compatibility problems.

As the poster says, the requirement to install in the chrome store

severely limits the number of potential users.

But why? Why do the majority of Chrome Web Store applications say that they only work on Chrome? Most of these are wrappers to web applications that work on a range of browsers, yet you click through a selection and most display "works on chrome", aka only installs on chrome.

Before we launched our application on chrome we found that someone had created "xxxxxxx launcher" in the store, that simply forwards to our web app page. We're still wondering why it only "works on chrome". I suspect that some default template for the web store has:

"container" : "CHROME",

in it, which is the configuration option to say chrome only. That said, I can't find one, so I'm very confused why this is. It would be healthier if people picked Chrome because it's the better browser (which it is in a number of regards), not because their choice is limited if they don't. People can always write to the application vendor and ask if this limitation is really necessary.

The second thought is that a standardised manifest format across cloud storage providers would mean a much higher take up in web app vendors. Although, it isn't hugely complex to integrate, for example, with Google Drive, the back-end and ironing out the the details took over a week in total. Multiply that lots of storage providers and you have you lose an engineer for 2 months + the maintenance afterwards. The more than is common across vendor integration, the more likely it is to happen.

And while I'm on it, a JavaScript widget for opening and saving (I know Google have opening) by each cloud storage provider would improve integration by web app vendors. We should be using one storage providers across multiple applications, not one web application across multiple storage providers, the file UI should be common to the storage provider.

like image 23
Thomas the Tank Engine Avatar answered Nov 21 '22 01:11

Thomas the Tank Engine