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”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载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 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"
    }
}