gSites Embed Web App

Embeds Apps Script Web App in new gSites

gSites Embed Web App là gì?

gSites Embed Web App là một tiện ích mở rộng Chrome được phát triển bởi https://swgapps.com, và tính năng chính của nó là "Embeds Apps Script Web App in new gSites".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng gSites Embed Web App

Tải xuống các tệp mở rộng gSites Embed Web App dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên gSites Embed Web App gSites Embed Web App
ID mmgjgimllkklkimcbicbmfaggefbecha
URL Chính Thức https://chromewebstore.google.com/detail/gsites-embed-web-app/mmgjgimllkklkimcbicbmfaggefbecha
Mô tả Embeds Apps Script Web App in new gSites
Kích Thước Tệp 42.36 KB
Số Lần Cài Đặt 208
Phiên Bản Hiện Tại 0.1.6
Cập Nhật Lần Cuối 2017-02-14
Ngày Phát Hành 2017-02-14
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://swgapps.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://sites.google.com/swgapps.com/publicnew/home?authuser=0
URL Trang Trợ Giúp https://sites.google.com/swgapps.com/publicnew/contact-us?authuser=0
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}