SaveAs

SaveAs for Google Docs

Wat is SaveAs?

SaveAs is een Chrome-extensie ontwikkeld door Jhaniv LTD., en de belangrijkste functie is "SaveAs for Google Docs".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie SaveAs

Download SaveAs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam SaveAs SaveAs
ID dfagmpodnkdapdbjhjmenkeilmmefkal
Officiële URL https://chromewebstore.google.com/detail/saveas/dfagmpodnkdapdbjhjmenkeilmmefkal
Beschrijving SaveAs for Google Docs
Bestandsgrootte 177 KB
Aantal Installaties 42
Huidige Versie 1.3
Laatst Bijgewerkt 2016-06-20
Publicatiedatum 2016-06-20
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Jhaniv LTD.
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}