Google Docs Show Image Source
Show the original image source for google doc images.
Cos'è Google Docs Show Image Source?
Google Docs Show Image Source è un'estensione di Chrome sviluppata da Jeremy Hay, e la sua funzione principale è "Show the original image source for google doc images.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Google Docs Show Image Source
Scarica i file di estensione Google Docs Show Image Source 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
Adds links to view or copy the original images used in a google doc. This extension is tied pretty closely to the current implementation of google docs. Therefore, this extension is likely to break. If this happens please file an issue on github: https://github.com/jeremypepper/google-doc-image-links-extension/issues and I'll try to fix it asap.
Informazioni di Base sull'Estensione
Nome | Google Docs Show Image Source |
ID | gkaedlofdpjmokmeoihckjkinfjcilkf |
URL Ufficiale | https://chromewebstore.google.com/detail/google-docs-show-image-so/gkaedlofdpjmokmeoihckjkinfjcilkf |
Descrizione | Show the original image source for google doc images. |
Dimensione del File | 37.28 KB |
Conteggio Installazioni | 258 |
Versione Corrente | 0.0.21 |
Ultimo Aggiornamento | 2016-01-28 |
Data di Pubblicazione | 2016-01-27 |
Valutazione | 3.40/5 Totale 5 Valutazioni |
Sviluppatore | Jeremy Hay |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/jeremypepper/google-doc-image-links-extension |
URL della Pagina di Aiuto | https://github.com/jeremypepper/google-doc-image-links-extension/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.21", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/*" ], "css": [ "styles\/main.css" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ] } |