Google Docs Show Image Source
Show the original image source for google doc images.
Google Docs Show Image Source là gì?
Google Docs Show Image Source là một tiện ích mở rộng Chrome được phát triển bởi Jeremy Hay, và tính năng chính của nó là "Show the original image source for google doc images.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Docs Show Image Source
Tải xuống các tệp mở rộng Google Docs Show Image Source dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Google Docs Show Image Source |
ID | gkaedlofdpjmokmeoihckjkinfjcilkf |
URL Chính Thức | https://chromewebstore.google.com/detail/google-docs-show-image-so/gkaedlofdpjmokmeoihckjkinfjcilkf |
Mô tả | Show the original image source for google doc images. |
Kích Thước Tệp | 37.28 KB |
Số Lần Cài Đặt | 258 |
Phiên Bản Hiện Tại | 0.0.21 |
Cập Nhật Lần Cuối | 2016-01-28 |
Ngày Phát Hành | 2016-01-27 |
Đánh Giá | 3.40/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | Jeremy Hay |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jeremypepper/google-doc-image-links-extension |
URL Trang Trợ Giúp | https://github.com/jeremypepper/google-doc-image-links-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |