Reddit Full Image Preview

This extension automatically resizes oversized images to fit within their containers

Reddit Full Image Preview क्या है?

Reddit Full Image Preview Chris द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension automatically resizes oversized images to fit within their containers"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Reddit Full Image Preview एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension  automatically shrinks oversized images to fit within their containers on your Reddit feed, saving you from having to open new tabs or click into individual posts. 

Additionally, it offers you the flexibility to enlarge any shrunk image with a simple click, right there in your feed. And for an even cleaner viewing experience, you have the option to hide the 'SEE FULL IMAGE' label as per your preference.                    

एक्सटेंशन की मूल जानकारी

नाम Reddit Full Image Preview Reddit Full Image Preview
ID alccgijljjooaababmbkeenmajbblnlp
आधिकारिक URL https://chromewebstore.google.com/detail/reddit-full-image-preview/alccgijljjooaababmbkeenmajbblnlp
विवरण This extension automatically resizes oversized images to fit within their containers
फ़ाइल का आकार 29.53 KB
स्थापना संख्या 1,818
वर्तमान संस्करण 0.0.0.8
अंतिम अपडेट 2023-05-22
प्रकाशन तिथि 2023-02-02
रेटिंग 3.60/5 कुल 20 रेटिंग्स
डेवलपर Chris
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Full Image Preview",
    "description": "This extension automatically resizes oversized images to fit within their containers",
    "version": "0.0.0.8",
    "manifest_version": 3,
    "icons": {
        "16": "\/images\/icon-16x16.png",
        "32": "\/images\/icon-32x32.png",
        "48": "\/images\/icon-48x48.png",
        "128": "\/images\/icon-128x128.png"
    },
    "action": {
        "default_popup": "options\/options.html",
        "default_icon": {
            "16": "\/images\/icon-16x16.png",
            "32": "\/images\/icon-32x32.png",
            "48": "\/images\/icon-48x48.png",
            "128": "\/images\/icon-128x128.png"
        }
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ]
}