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ファイルをダウンロード
gSites Embed Web App拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |