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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον younesbarraddev, και η κύρια λειτουργία του είναι "Docs Image Zoom is a Chrome extension that enables image zoom in Google Docs".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Google Docs Image Zoom

Λήψη αρχείων επέκτασης 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
Επίσημο 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'"
    }
}