SaveAs
SaveAs for Google Docs
Cos'è SaveAs?
SaveAs è un'estensione di Chrome sviluppata da Jhaniv LTD., e la sua funzione principale è "SaveAs for Google Docs".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SaveAs
Scarica i file di estensione SaveAs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
SaveAs brings the familiar "SaveAs" functionality to your Google Docs.
Informazioni di Base sull'Estensione
Nome | SaveAs |
ID | dfagmpodnkdapdbjhjmenkeilmmefkal |
URL Ufficiale | https://chromewebstore.google.com/detail/saveas/dfagmpodnkdapdbjhjmenkeilmmefkal |
Descrizione | SaveAs for Google Docs |
Dimensione del File | 177 KB |
Conteggio Installazioni | 42 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2016-06-20 |
Data di Pubblicazione | 2016-06-20 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Jhaniv LTD. |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } } |