Google Docs Image Zoom

Docs Image Zoom is a Chrome extension that enables image zoom in Google Docs

Google Docs Image Zoom란 무엇입니까?

Google Docs Image Zoom은(는) younesbarraddev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Docs Image Zoom is a Chrome extension that enables image zoom in Google Docs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Google Docs Image Zoom 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Preview, download images from Google Docs

Docs Image Zoom is a chrome extension that enables image zoom/downloads in Google Products such as Docs/Spreadsheets/Slides.

Features:
✅ Supports Docs/Sheets/Slides!
🙏 Free
🖼️ Rotate/Zoom In-Out Preview

Instruction:
In the opened document, click the image you want to zoom. You will see the zoom icon in the right top corner of the image. Click it. The popup with the zoomed image will appear. To close the zoomed image popup, simply click outside of the zoomed image popup or click the close icon in the right top corner of the zoomed image popup.

Disclaimer:
The developer of this extension owns no rights or related in any way to the "Google Docs" software and related trademarks. This extension is not endorsed by any legal entities owning the rights to the "Google Docs" software and related trademarks. Use this extension at your own risk and discretion.                    

확장 프로그램 기본 정보

이름 Google Docs Image Zoom Google Docs Image Zoom
ID jpbamfkmnggnnkeipgnomogpdclocibk
공식 URL https://chromewebstore.google.com/detail/google-docs-image-zoom/jpbamfkmnggnnkeipgnomogpdclocibk
설명 Docs Image Zoom is a Chrome extension that enables image zoom in Google Docs
파일 크기 94.6 KB
설치 횟수 3,175
현재 버전 1.7.7
최근 업데이트 2023-11-16
출시 날짜 2022-07-18
평점 4.73/5 총 26 개의 평점
개발자 younesbarraddev
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://paypal.me/younesbarrad
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Docs Image Zoom",
    "version": "1.7.7",
    "description": "Docs Image Zoom is a Chrome extension that enables image zoom in Google Docs",
    "action": {
        "default_icon": ".\/assets\/icon128.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "options_ui": {
        "page": ".\/dist\/options\/index.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "icons": {
        "16": ".\/assets\/icon16.png",
        "48": ".\/assets\/icon48.png",
        "128": ".\/assets\/icon128.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.docs.google.com\/*"
            ],
            "js": [
                "dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css"
            ],
            "matches": [
                "https:\/\/*.docs.google.com\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}