gSites Embed Web App
Embeds Apps Script Web App in new gSites
¿Qué es gSites Embed Web App?
gSites Embed Web App es una extensión de Chrome desarrollada por https://swgapps.com, y su función principal es "Embeds Apps Script Web App in new gSites".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión gSites Embed Web App
Descarga archivos de extensión gSites Embed Web App en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
A Chrome Extension that embeds a Recent Google Drive Files web application within a "new" Google Sites webpage. It list the seven most recent "Owned by me" and "Shared with me". To implement, simply: 1. edit a "new" Google Site webpage 2. insert "Text box" 3. type "insertRecentDriveFiles" and/or "insertRecentDriveFolders" 4. save and re-publish After installing this Chrome Extension, the "insertRecentDriveFiles" and/or "insertRecentDriveFolders" text will be replaced with a web app. The web app retrieves your sign-in Google account and then queries your Google Drive with the recent results. Want to embed your Google Apps Script web app into your "new" Google Site? Contact SW gApps at www.swgapps.com for a custom Chrome Extension.
Información Básica de la Extensión
Nombre | gSites Embed Web App |
ID | mmgjgimllkklkimcbicbmfaggefbecha |
URL Oficial | https://chromewebstore.google.com/detail/gsites-embed-web-app/mmgjgimllkklkimcbicbmfaggefbecha |
Descripción | Embeds Apps Script Web App in new gSites |
Tamaño del Archivo | 42.36 KB |
Cantidad de Instalaciones | 208 |
Versión Actual | 0.1.6 |
Última Actualización | 2017-02-14 |
Fecha de Publicación | 2017-02-14 |
Calificación | 5.00/5 Total de 4 Calificaciones |
Desarrollador | https://swgapps.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://sites.google.com/swgapps.com/publicnew/home?authuser=0 |
URL de la Página de Ayuda | https://sites.google.com/swgapps.com/publicnew/contact-us?authuser=0 |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.6", "manifest_version": 2, "default_locale": "en", "name": "__MSG_appName__", "short_name": "swgapps-apps-script-webapp", "author": "[email protected]", "description": "__MSG_appDesc__", "icons": { "128": "icon\/icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/sites.google.com\/*" ], "js": [ "lib\/jquery.min.js", "extensionPromise.js" ], "all_frames": true, "run_at": "document_end" } ], "web_accessible_resources": [ "extensionPromise.js", "lib\/jquery.min.js", "background\/background.js", "content\/insertHtml.html" ], "permissions": [ "tabs", "https:\/\/sites.google.com\/*", "https:\/\/script.google.com\/macros\/*", "https:\/\/script.googleusercontent.com\/*", "declarativeContent" ] } |