Reddit Image Opener
Open images on Reddit directly from post previews
什麼是Reddit Image Opener?
Reddit Image Opener是由RedditImageOpener開發的Chrome擴展程式,該擴展的主要功能是“Open images on Reddit directly from post previews”。
擴展截圖
下載Reddit Image Opener擴展crx文件
下載Reddit Image Opener擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |