Reddit Image Opener
Open images on Reddit directly from post previews
Reddit Image Opener क्या है?
Reddit Image Opener RedditImageOpener द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open images on Reddit directly from post previews"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reddit Image Opener एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Reddit Image Opener adds an “Open Image” button to post previews, enabling users to quickly open the full-resolution source image of a post without having to first open the post itself. Images open in new tabs, and the extension can be configured to open these tabs in the background for viewing at a later time. Works with both single and multi-image posts.
एक्सटेंशन की मूल जानकारी
नाम | Reddit Image Opener |
ID | iffnacikcgjlndahdgnckeekdefoafbn |
आधिकारिक URL | https://chromewebstore.google.com/detail/reddit-image-opener/iffnacikcgjlndahdgnckeekdefoafbn |
विवरण | Open images on Reddit directly from post previews |
फ़ाइल का आकार | 742 KB |
स्थापना संख्या | 413 |
वर्तमान संस्करण | 1.6 |
अंतिम अपडेट | 2023-09-26 |
प्रकाशन तिथि | 2022-01-25 |
रेटिंग | 5.00/5 कुल 6 रेटिंग्स |
डेवलपर | RedditImageOpener |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Reddit Image Opener", "version": "1.6", "description": "Open images on Reddit directly from post previews", "permissions": [ "storage", "declarativeNetRequest", "tabs" ], "host_permissions": [ "*:\/\/i.redd.it\/*", "*:\/\/preview.redd.it\/*", "*:\/\/external-preview.redd.it\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.reddit.com\/*" ], "js": [ "content.js" ] } ], "action": { "default_icon": "img\/icon.png", "default_popup": "popup.html" }, "icons": { "128": "img\/icon128.png", "16": "img\/icon16.png", "48": "img\/icon48.png" } } |