SaveAs
SaveAs for Google Docs
Was ist SaveAs?
SaveAs ist eine Chrome-Erweiterung, die von Jhaniv LTD. entwickelt wurde, und ihr Hauptmerkmal ist "SaveAs for Google Docs".
Erweiterungsscreenshots
SaveAs-Erweiterungs-CRX-Datei herunterladen
Laden Sie SaveAs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
SaveAs brings the familiar "SaveAs" functionality to your Google Docs.
Grundlegende Informationen zur Erweiterung
Name | SaveAs |
ID | dfagmpodnkdapdbjhjmenkeilmmefkal |
Offizielle URL | https://chromewebstore.google.com/detail/saveas/dfagmpodnkdapdbjhjmenkeilmmefkal |
Beschreibung | SaveAs for Google Docs |
Dateigröße | 177 KB |
Installationsanzahl | 42 |
Aktuelle Version | 1.3 |
Letztes Update | 2016-06-20 |
Veröffentlichungsdatum | 2016-06-20 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Jhaniv LTD. |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } } |