Google Docs Show Image Source
Show the original image source for google doc images.
Apa itu Google Docs Show Image Source?
Google Docs Show Image Source adalah ekstensi Chrome yang dikembangkan oleh Jeremy Hay, dan fitur utamanya adalah "Show the original image source for google doc images.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Google Docs Show Image Source
Unduh file ekstensi Google Docs Show Image Source dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Google Docs Show Image Source |
ID | gkaedlofdpjmokmeoihckjkinfjcilkf |
URL Resmi | https://chromewebstore.google.com/detail/google-docs-show-image-so/gkaedlofdpjmokmeoihckjkinfjcilkf |
Deskripsi | Show the original image source for google doc images. |
Ukuran File | 37.28 KB |
Jumlah Instalasi | 258 |
Versi Saat Ini | 0.0.21 |
Terakhir Diperbarui | 2016-01-28 |
Tanggal Publikasi | 2016-01-27 |
Penilaian | 3.40/5 Total 5 Penilaian |
Pengembang | Jeremy Hay |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/jeremypepper/google-doc-image-links-extension |
URL Halaman Bantuan | https://github.com/jeremypepper/google-doc-image-links-extension/issues |
Bahasa yang Didukung | 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 } ] } |