Reddit Image Opener
Open images on Reddit directly from post previews
What is Reddit Image Opener?
Reddit Image Opener is a Chrome extension developed by RedditImageOpener, and its main feature is "Open images on Reddit directly from post previews".
Extension Screenshots
Download Reddit Image Opener Extension CRX File
Download Reddit Image Opener extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Reddit Image Opener |
ID | iffnacikcgjlndahdgnckeekdefoafbn |
Official URL | https://chromewebstore.google.com/detail/reddit-image-opener/iffnacikcgjlndahdgnckeekdefoafbn |
Description | Open images on Reddit directly from post previews |
File Size | 742 KB |
Installation Count | 413 |
Current Version | 1.6 |
Last Updated | 2023-09-26 |
Publish Date | 2022-01-25 |
Rating | 5.00/5 Total 6 Ratings |
Developer | RedditImageOpener |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |