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文件

下載Google Docs Image Zoom擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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'"
    }
}