G-Suite市场应用程序是哪种应用程序? [英] What kind of apps are G-Suite marketplace apps?

查看:199
本文介绍了G-Suite市场应用程序是哪种应用程序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Chrome网上应用店支持3种不同的应用程序类型:扩展程序,托管应用程序和打包应用程序.扩展程序适用于具有最少UI且主要扩展Chrome功能的应用程序.打包的应用程序可以在标签中运行,可以访问Chrome API,并在后台运行.托管的应用程序在选项卡中运行,并且需要Internet连接才能从主机加载页面.

The chrome web store support 3 different app types: extensions, hosted apps, and packaged apps. Extensions are for apps that have minimal UI and primarily extend the functionality of Chrome. Packaged apps can run in a tab, can access the Chrome API, and run in the background. Hosted apps run in a tab and require an internet connection to load the page from the host.

但是G-Suite市场支持哪种应用程序?我注意到在市场中安装的应用程序应该以不同的方式运行(即,登录到Google Apps而不是在Chrome标签中时,它们显示导航栏启动器),这是否意味着存在其他类型的应用程序?当Chrome取消对其托管和打包应用的支持时,是否还会影响G-Suite市场中相同类型的应用?

But what kind of apps does the G-Suite marketplace support? I noticed that apps installed in the marketplace should up differently (i.e. they show up the nav bar launcher when logged in to Google Apps, not in a Chrome tab) so does that mean there are a different app type? And when Chrome removes support for it's hosted and packaged apps does that also affect the same types of apps in the G-Suite marketplace?

推荐答案

由于您的问题更多地是关于G-Suite应用程序的,但对于chrome存储中的其他内容也一无所知.

Since your question is more about G-Suite apps but it is worth to know little about other things in chrome store as well.

1. Chrome扩展程序:

Chrome扩展程序是最小化的应用程序,具有最少的ui.您可以访问创建扩展程序所需的所有chrome API.查看清单文件,或跳到顶部开始学习.
示例:添加拦截器并保存书签扩展名

Chrome extensions are tiny applicatons with minimal ui. You can access all the chrome APIs that you need to create an extension. Take a look at the manifest file or jump over to top section to start learning.
Examples: add blockers and save bookmark extensions

2. Chrome托管应用/打包应用:

这些是具有完整UI的独立应用程序.如果您想给用户更多的交互作用,或者您的应用程序具有多个视图而更加复杂,或者它不与用户访问的网页交互,那么您可以选择创建一个chrome应用程序,否则将其扩展.您可以访问应用程序中所需的所有chrome API.关于托管应用程序要注意的一件事,由于它们托管在其他服务器上而不是用户浏览器本地,因此它们无法访问chrome API.这是清单文件,或跳至顶部以开始学习.
示例:打包应用程序:Rest Clients,托管应用程序:Messenger应用程序

These are Standalone apps with full UI. If you want to give users more interaction or if your app is more complicated with multiple views or it does not interact with user visited web pages then you can choose to create a chrome app otherwise go with extension. You can access all the chrome APIs that you need in your application. One thing to note about hosted Apps, they can't access chrome APIs since they hosted on other servers rather than local to user browser. Here is the manifest file or jump over to top section to start learning.
Examples for Packaged Apps: Rest Clients, Hosted Apps: Messenger apps

如果您查看扩展清单文件和应用清单文件,则它们看起来相同,只是您明确需要将其指定为应用.

If you look extension manifest file and apps manifest file they look identical except you explicitly need to specify it as an app.

因此什么是chrome API :一般来说,您要访问用户访问量最高的网站,因此您拥有chrome.history API.使用它们之前,需要在清单文件中指定权限.

So what are chrome APIs: In general you want to access users top most visited websites, there you go you have chrome.history API. You need to specify the permissions in your manifest file before you use them.

在选择要创建的内容之前,请先看这里.这只是一个决策逻辑,它说明了适合您的条件. https://developer.chrome.com/webstore/choosing

Before you choose what you want to create take a look at here. It is just a decision logic which explains which fits for you. https://developer.chrome.com/webstore/choosing

3. G-Suite应用程序:

Google套件应用程序是一些小插件,可以自动执行Google的11个云应用程序的任务.这些应用是Google文档,日历,云端硬盘,Gmail,翻译,地图等.在此处快速介绍. 由于它们直接包含在google应用程序中,因此无论何时在任何浏览器上使用这些应用程序,都可以对其进行访问.您将使用Javascript(此处称为App Script,但差别不大)和一堆Google API来构建您的g-suite应用.
注意:它们是专门为Google产品设计的.

Google suite Apps are little add-ons to automate the tasks of Google's 11 Cloud Apps. Those apps are Google Docs, Calendar, Drive, Gmail, Translate, Maps etc.Quick intro here. Since they directly included into google apps so that they can be accessed whenever you use those apps with any browser. You are going to use Javascript (known as App Script here but not much difference) and bunch of google APIs to build your g-suite apps.
Note: They are specifically designed for Google products.

以下是您的一些问题:

G-Suite市场支持哪些应用程序?
G-Suite应用程序当前支持与产品管理和教育相关的应用程序.

what kind of apps does the G-Suite marketplace support?
G-Suite apps currently supports product management and education related apps.

我注意到应用登录到Google Apps时会显示导航栏启动器,而不是在Chrome标签中显示吗?
由于它们是为Google云应用程序构建的,因此它们就可以直接在应用程序内部运行.您可以从菜单栏中访问它们.一个很好的例子是文档的拼写检查器.

I noticed that apps show up the nav bar launcher when logged in to Google Apps, not in a Chrome tab?
Since they are built for google cloud apps they live right inside the apps. You can access them from menu bar. A good example would be a spell checker for docs.

当Chrome取消对其托管和打包应用的支持时,是否还会影响G-Suite市场中相同类型的应用?
到目前为止,Chrome表示他们将在2017年中以后取消对浏览器chrome应用程序的支持.但是他们从未透露任何有关chrome扩展程序和Google套件应用程序的信息.因此它们很安全,而且Google套件应用程序还很新.

When Chrome removes support for it's hosted and packaged apps does that also affect the same types of apps in the G-Suite marketplace?
As of now, Chrome said they will remove support for in browser chrome apps after mid 2017. But they never told anything about chrome extensions and Google suite apps. So they are safe and Google suite apps are pretty new.

这篇关于G-Suite市场应用程序是哪种应用程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆