Reddit Full Image Preview

This extension automatically resizes oversized images to fit within their containers

Apa itu Reddit Full Image Preview?

Reddit Full Image Preview adalah ekstensi Chrome yang dikembangkan oleh Chris, dan fitur utamanya adalah "This extension automatically resizes oversized images to fit within their containers".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Reddit Full Image Preview

Unduh file ekstensi Reddit Full Image Preview dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Reddit Full Image Preview Reddit Full Image Preview
ID alccgijljjooaababmbkeenmajbblnlp
URL Resmi https://chromewebstore.google.com/detail/reddit-full-image-preview/alccgijljjooaababmbkeenmajbblnlp
Deskripsi This extension automatically resizes oversized images to fit within their containers
Ukuran File 29.53 KB
Jumlah Instalasi 1,818
Versi Saat Ini 0.0.0.8
Terakhir Diperbarui 2023-05-22
Tanggal Publikasi 2023-02-02
Penilaian 3.60/5 Total 20 Penilaian
Pengembang Chris
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}