BigImage
Enlarges the images upon hovering the mouse over it
Was ist BigImage?
BigImage ist eine Chrome-Erweiterung, die von seposwatdevelopers entwickelt wurde, und ihr Hauptmerkmal ist "Enlarges the images upon hovering the mouse over it".
Erweiterungsscreenshots
BigImage-Erweiterungs-CRX-Datei herunterladen
Laden Sie BigImage-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This tool is for internal SEPO group to be used to enlarge images or automatically load all the present images in Paragon in new tabs to help increase productivity.
Grundlegende Informationen zur Erweiterung
Name | BigImage |
ID | eiglfjgonnbhjkiajjeafigapjccekfh |
Offizielle URL | https://chromewebstore.google.com/detail/bigimage/eiglfjgonnbhjkiajjeafigapjccekfh |
Beschreibung | Enlarges the images upon hovering the mouse over it |
Dateigröße | 9.13 KB |
Installationsanzahl | 102 |
Aktuelle Version | 1.0 |
Letztes Update | 2023-09-11 |
Veröffentlichungsdatum | 2023-09-10 |
Entwickler | seposwatdevelopers |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "BigImage", "description": "Enlarges the images upon hovering the mouse over it", "version": "1.0", "author": "Kritartha Borthakur @kritarb", "icons": { "16": "\/images\/new16.png", "48": "\/images\/new48.png", "128": "\/images\/new128.png" }, "page_action": { "default icon": { "16": "\/images\/new16.png", "48": "\/images\/new48.png", "128": "\/images\/new128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/*", "https:\/\/www.amazon.co.uk\/*", "https:\/\/www.amazon.de\/*", "https:\/\/www.amazon.fr\/*", "https:\/\/www.amazon.in\/*", "https:\/\/www.amazon.ca\/*", "https:\/\/paragon-na.amazon.com\/*", "https:\/\/paragon-eu.amazon.com\/*" ], "all_frames": true, "js": [ "script.js" ], "run_at": "document_idle" } ] } |