Google Docs Show Image Source
Show the original image source for google doc images.
Hvad er Google Docs Show Image Source?
Google Docs Show Image Source er en Chrome-udvidelse udviklet af Jeremy Hay, og dens hovedfunktion er "Show the original image source for google doc images.".
Udvidelsesskærmbilleder
Download Google Docs Show Image Source-udvidelses-CRX-fil
Download Google Docs Show Image Source-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Google Docs Show Image Source |
ID | gkaedlofdpjmokmeoihckjkinfjcilkf |
Officiel URL | https://chromewebstore.google.com/detail/google-docs-show-image-so/gkaedlofdpjmokmeoihckjkinfjcilkf |
Beskrivelse | Show the original image source for google doc images. |
Filstørrelse | 37.28 KB |
Antal Installationer | 258 |
Nuværende Version | 0.0.21 |
Senest Opdateret | 2016-01-28 |
Udgivelsesdato | 2016-01-27 |
Bedømmelse | 3.40/5 Samlet 5 Bedømmelser |
Udvikler | Jeremy Hay |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/jeremypepper/google-doc-image-links-extension |
Hjælpeside-URL | https://github.com/jeremypepper/google-doc-image-links-extension/issues |
Understøttede Sprog | 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 } ] } |