Google Docs Image Viewer
Free your embedded Google Docs images!
Google Docs Image Viewer란 무엇입니까?
Google Docs Image Viewer은(는) Gino에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Free your embedded Google Docs images!"입니다.
확장 프로그램 스크린샷
Google Docs Image Viewer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Hover over any Google Docs embedded image to see the full size source in a new tab. Does this sound like you? • I need the original image I embedded a while ago. It's right here, why can't I have it!? • My designer embedded a huge flow in this doc but I left my microscope at home and can't read anything. (I'm a designer fyi) • Janice in Accounting made an awesome diagram and I want to steal it for my own glory. Can i haz? If you're frustrated with embedded images locked away in Google Docs then this chrome extension is for you! Simply hover over any image and you'll see an icon in the bottom right corner that links to the full size source image in a new tab.
확장 프로그램 기본 정보
이름 | Google Docs Image Viewer |
ID | kdlnfjjcbeaehfkoefcgfmnmdocogbja |
공식 URL | https://chromewebstore.google.com/detail/google-docs-image-viewer/kdlnfjjcbeaehfkoefcgfmnmdocogbja |
설명 | Free your embedded Google Docs images! |
파일 크기 | 6.52 KB |
설치 횟수 | 1,066 |
현재 버전 | 1.1 |
최근 업데이트 | 2019-04-09 |
출시 날짜 | 2019-04-09 |
평점 | 3.00/5 총 10 개의 평점 |
개발자 | Gino |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/gvalente/google-docs-image-viewer |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Docs Image Viewer", "description": "Free your embedded Google Docs images!", "author": "Gino Valente", "permissions": [], "browser_action": { "default_title": "Google Docs Image Viewer", "default_icon": { "16": "images\/default_icon16.png", "32": "images\/default_icon32.png", "48": "images\/default_icon48.png", "128": "images\/default_icon128.png" } }, "icons": { "16": "images\/default_icon16.png", "32": "images\/default_icon32.png", "48": "images\/default_icon48.png", "128": "images\/default_icon128.png" }, "content_scripts": [ { "all_frames": false, "css": [ "style.css" ], "js": [ "contentscript.js" ], "matches": [ "https:\/\/docs.google.com\/*" ], "run_at": "document_end" } ], "manifest_version": 2, "version": "1.1" } |