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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } ] } |