Google Docs Show Image Source
Show the original image source for google doc images.
什么是Google Docs Show Image Source?
Google Docs Show Image Source是由Jeremy Hay开发的Chrome扩展程序,该扩展的主要功能是“Show the original image source for google doc images.”。
扩展截图
下载Google Docs Show Image Source扩展crx文件
下载Google Docs Show Image Source扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Google Docs Show Image Source |
ID | gkaedlofdpjmokmeoihckjkinfjcilkf |
官方URL | https://chromewebstore.google.com/detail/google-docs-show-image-so/gkaedlofdpjmokmeoihckjkinfjcilkf |
简介 | Show the original image source for google doc images. |
文件大小 | 37.28 KB |
安装次数 | 258 |
当前版本 | 0.0.21 |
更新时间 | 2016-01-28 |
上架时间 | 2016-01-27 |
评分 | 3.40/5 共5次评分 |
开发者 | Jeremy Hay |
付费类型 | free |
扩展官网 | https://github.com/jeremypepper/google-doc-image-links-extension |
帮助页面URL | https://github.com/jeremypepper/google-doc-image-links-extension/issues |
支持的语言 | 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 } ] } |