SaveAs

SaveAs for Google Docs

什么是SaveAs?

SaveAs是由Jhaniv LTD.开发的Chrome扩展程序,该扩展的主要功能是“SaveAs for Google Docs”。

扩展截图

screenshot

下载SaveAs扩展crx文件

下载SaveAs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        SaveAs brings the familiar "SaveAs" functionality to your Google Docs.                    

扩展基本信息

名称 SaveAs SaveAs
ID dfagmpodnkdapdbjhjmenkeilmmefkal
官方URL https://chromewebstore.google.com/detail/saveas/dfagmpodnkdapdbjhjmenkeilmmefkal
简介 SaveAs for Google Docs
文件大小 177 KB
安装次数 42
当前版本 1.3
更新时间 2016-06-20
上架时间 2016-06-20
评分 5.00/5 共2次评分
开发者 Jhaniv LTD.
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SaveAs",
    "short_name": "SaveAs",
    "manifest_version": 2,
    "version": "1.3",
    "minimum_chrome_version": "29",
    "description": "SaveAs for Google Docs",
    "background": {
        "scripts": [
            "background.js",
            "gdocs.js",
            "jq.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/document\/*",
                "https:\/\/docs.google.com\/spreadsheets\/*"
            ],
            "js": [
                "jq.js",
                "main.js",
                "mn.js",
                "gdocs.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "statusbar.html"
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "identity",
        "https:\/\/ssl.gstatic.com\/",
        "https:\/\/www.googleapis.com\/",
        "https:\/\/accounts.google.com\/"
    ],
    "oauth2": {
        "client_id": "681906034548-smp6b665oaojlnlu4ohlqpsofr05q61v.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/drive",
            "https:\/\/www.googleapis.com\/auth\/drive.file",
            "https:\/\/www.googleapis.com\/auth\/drive.metadata",
            "https:\/\/www.googleapis.com\/auth\/drive.scripts"
        ]
    },
    "browser_action": {
        "name": "test",
        "icons": [
            "icon.png"
        ]
    }
}