BigImage
Enlarges the images upon hovering the mouse over it
Что такое BigImage?
BigImage - это расширение Chrome, разработанное seposwatdevelopers, и его основная функция - "Enlarges the images upon hovering the mouse over it".
Снимки экрана расширения
Скачать файл CRX расширения BigImage
Скачайте файлы расширений BigImage в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | BigImage |
ID | eiglfjgonnbhjkiajjeafigapjccekfh |
Официальный URL | https://chromewebstore.google.com/detail/bigimage/eiglfjgonnbhjkiajjeafigapjccekfh |
Описание | Enlarges the images upon hovering the mouse over it |
Размер файла | 9.13 KB |
Количество установок | 102 |
Текущая Версия | 1.0 |
Последнее Обновление | 2023-09-11 |
Дата публикации | 2023-09-10 |
Разработчик | seposwatdevelopers |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" } ] } |