gSites Embed Web App

Embeds Apps Script Web App in new gSites

Τι είναι το gSites Embed Web App;

Το gSites Embed Web App είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://swgapps.com, και η κύρια λειτουργία του είναι "Embeds Apps Script Web App in new gSites".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης gSites Embed Web App

Λήψη αρχείων επέκτασης 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 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"
    ]
}