SaveAs

SaveAs for Google Docs

What is SaveAs?

SaveAs is a Chrome extension developed by Jhaniv LTD., and its main feature is "SaveAs for Google Docs".

Extension Screenshots

screenshot

Download SaveAs Extension CRX File

Download SaveAs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name SaveAs SaveAs
ID dfagmpodnkdapdbjhjmenkeilmmefkal
Official URL https://chromewebstore.google.com/detail/saveas/dfagmpodnkdapdbjhjmenkeilmmefkal
Description SaveAs for Google Docs
File Size 177 KB
Installation Count 42
Current Version 1.3
Last Updated 2016-06-20
Publish Date 2016-06-20
Rating 5.00/5 Total 2 Ratings
Developer Jhaniv LTD.
Payment Type free
Supported Languages 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"
        ]
    }
}