gSites Embed Web App
Embeds Apps Script Web App in new gSites
gSites Embed Web App क्या है?
gSites Embed Web App https://swgapps.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Embeds Apps Script Web App in new gSites"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में gSites Embed Web App एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |