Google Docs Show Image Source
Show the original image source for google doc images.
Co to jest Google Docs Show Image Source?
Google Docs Show Image Source to rozszerzenie Chrome opracowane przez Jeremy Hay, a jego główną funkcją jest „Show the original image source for google doc images.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Google Docs Show Image Source
Pobierz pliki rozszerzeń Google Docs Show Image Source w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Google Docs Show Image Source |
ID | gkaedlofdpjmokmeoihckjkinfjcilkf |
Oficjalny URL | https://chromewebstore.google.com/detail/google-docs-show-image-so/gkaedlofdpjmokmeoihckjkinfjcilkf |
Opis | Show the original image source for google doc images. |
Rozmiar pliku | 37.28 KB |
Liczba instalacji | 258 |
Aktualna Wersja | 0.0.21 |
Ostatnia Aktualizacja | 2016-01-28 |
Data Publikacji | 2016-01-27 |
Ocena | 3.40/5 Łącznie 5 Oceny |
Deweloper | Jeremy Hay |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/jeremypepper/google-doc-image-links-extension |
Adres URL Strony Pomocy | https://github.com/jeremypepper/google-doc-image-links-extension/issues |
Obsługiwane Języki | 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 } ] } |