BigImage
Enlarges the images upon hovering the mouse over it
Vad är BigImage?
BigImage är en Chrome-tillägg utvecklad av seposwatdevelopers, och dess huvudfunktion är "Enlarges the images upon hovering the mouse over it".
Tilläggsskärmbilder
Ladda ner BigImage-förlängningens CRX-fil
Ladda ner BigImage-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | BigImage |
ID | eiglfjgonnbhjkiajjeafigapjccekfh |
Officiell webbadress | https://chromewebstore.google.com/detail/bigimage/eiglfjgonnbhjkiajjeafigapjccekfh |
Beskrivning | Enlarges the images upon hovering the mouse over it |
Filstorlek | 9.13 KB |
Antal Installationer | 102 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2023-09-11 |
Publiceringsdatum | 2023-09-10 |
Utvecklare | seposwatdevelopers |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } ] } |