BigImage
Enlarges the images upon hovering the mouse over it
BigImage क्या है?
BigImage seposwatdevelopers द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enlarges the images upon hovering the mouse over it"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में BigImage एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } ] } |