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 } ] } |