Reddit Image Preview
Previewing images on reddit is faster than ever.
Reddit Image Preview क्या है?
Reddit Image Preview Alexandru Stamp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Previewing images on reddit is faster than ever."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reddit Image Preview एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Want to check an image before clicking on the link ? This is where this extension come to help. Best extension to use on /r/funny, /r/pcmasterrace, /r/pics , etc. It supports images provided by imgur.com (90% of reddit.com images), gfycat.com, reddituploads.com(reddit direct upload). Hover your mouse cursor on a post title where it`s URL(link) is an image to preview it. Image preview is displayed in the middle of the screen. To cancel the preview move the mouse somewhere else. This works on the front page and every subreddit. To enable or disable the extension, just press the Reddit Image Preview icon in the top left then press disable/enable. More image providers support soon. For any questions or problems send an email to : [email protected]
एक्सटेंशन की मूल जानकारी
नाम | Reddit Image Preview |
ID | epkgcgdkdcihbmiapdajdhnkccaggbam |
आधिकारिक URL | https://chromewebstore.google.com/detail/reddit-image-preview/epkgcgdkdcihbmiapdajdhnkccaggbam |
विवरण | Previewing images on reddit is faster than ever. |
फ़ाइल का आकार | 51.28 KB |
स्थापना संख्या | 1,066 |
वर्तमान संस्करण | 1.5 |
अंतिम अपडेट | 2016-05-31 |
प्रकाशन तिथि | 2016-05-31 |
रेटिंग | 2.91/5 कुल 11 रेटिंग्स |
डेवलपर | Alexandru Stamp |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reddit Image Preview", "version": "1.5", "description": "Previewing images on reddit is faster than ever.", "background": { "scripts": [ "jquery-2.2.3.min.js", "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*.reddit.com\/*", "*:\/\/reddit.com\/*" ], "js": [ "jquery-2.2.3.min.js", "content.js" ] } ], "browser_action": { "default_title": "Reddit Image Preview", "default_icon": "img-on.png", "default_popup": "popup.html" }, "icons": { "128": "img-on.png" }, "permissions": [ "storage" ] } |