Reddit Full Image Preview

This extension automatically resizes oversized images to fit within their containers

Reddit Full Image Previewคืออะไร?

Reddit Full Image Preview เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chris และคุณลักษณะหลักของมันคือ "This extension automatically resizes oversized images to fit within their containers"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reddit Full Image Preview

ดาวน์โหลดไฟล์ส่วนขยาย Reddit Full Image Preview ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}