Show The Image
Press Ctrl/Cmd+Q to show the largest image in the page
Show The Image क्या है?
Show The Image jan.pesa द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Press Ctrl/Cmd+Q to show the largest image in the page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Show The Image एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
I often bump into image galleries where clicking on thumbnails will take you to a new page with the original photo. The usual problem with these "detail pages" is that they contain a lot of other elements and noise like adverts, other thumbnails, unrelated content and image is often shrinked and cropped so you don't see the original right away. This extension solves that by providing you with a simple keyboard shortcut CTRL+Q (Windows) or Cmd+Q (MacOS) that finds the largest image in the current page (eventually searches for a link leading to even larger original image) and displays it without any disturbing elements. Pressing the shortcut again will take you back. If this gets somewhat popular, I may add configurable shortcut and more - leave your ideas. Enjoy.
एक्सटेंशन की मूल जानकारी
नाम | Show The Image |
ID | gfadjkidlmepfcieicmhmfgolejnnbol |
आधिकारिक URL | https://chromewebstore.google.com/detail/show-the-image/gfadjkidlmepfcieicmhmfgolejnnbol |
विवरण | Press Ctrl/Cmd+Q to show the largest image in the page |
फ़ाइल का आकार | 9.48 KB |
स्थापना संख्या | 47 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2020-10-24 |
प्रकाशन तिथि | 2020-01-19 |
डेवलपर | jan.pesa |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/smajl/show-the-image |
सहायता पृष्ठ URL | https://github.com/smajl/show-the-image/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Show The Image", "description": "Press Ctrl\/Cmd+Q to show the largest image in the page", "version": "1.0.0", "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "browser_action": { "default_icon": "icon_16.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "show-the-image": { "suggested_key": { "default": "Ctrl+Q" }, "description": "Key for showing the largest image and going back to original page" } }, "permissions": [ "activeTab" ] } |