gSites Embed Web App
Embeds Apps Script Web App in new gSites
gSites Embed Web App란 무엇입니까?
gSites Embed Web App은(는) https://swgapps.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Embeds Apps Script Web App in new gSites"입니다.
확장 프로그램 스크린샷
gSites Embed Web App 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | gSites Embed Web App |
ID | mmgjgimllkklkimcbicbmfaggefbecha |
공식 URL | https://chromewebstore.google.com/detail/gsites-embed-web-app/mmgjgimllkklkimcbicbmfaggefbecha |
설명 | Embeds Apps Script Web App in new gSites |
파일 크기 | 42.36 KB |
설치 횟수 | 208 |
현재 버전 | 0.1.6 |
최근 업데이트 | 2017-02-14 |
출시 날짜 | 2017-02-14 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | https://swgapps.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://sites.google.com/swgapps.com/publicnew/home?authuser=0 |
도움말 페이지 URL | https://sites.google.com/swgapps.com/publicnew/contact-us?authuser=0 |
지원되는 언어 | 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" ] } |