Reddit Image Opener
Open images on Reddit directly from post previews
Reddit Image Opener là gì?
Reddit Image Opener là một tiện ích mở rộng Chrome được phát triển bởi RedditImageOpener, và tính năng chính của nó là "Open images on Reddit directly from post previews".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Reddit Image Opener
Tải xuống các tệp mở rộng Reddit Image Opener dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Reddit Image Opener |
ID | iffnacikcgjlndahdgnckeekdefoafbn |
URL Chính Thức | https://chromewebstore.google.com/detail/reddit-image-opener/iffnacikcgjlndahdgnckeekdefoafbn |
Mô tả | Open images on Reddit directly from post previews |
Kích Thước Tệp | 742 KB |
Số Lần Cài Đặt | 413 |
Phiên Bản Hiện Tại | 1.6 |
Cập Nhật Lần Cuối | 2023-09-26 |
Ngày Phát Hành | 2022-01-25 |
Đánh Giá | 5.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | RedditImageOpener |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |