Reddit Full Image Preview

This extension automatically resizes oversized images to fit within their containers

Reddit Full Image Preview란 무엇입니까?

Reddit Full Image Preview은(는) Chris에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension automatically resizes oversized images to fit within their containers"입니다.

확장 프로그램 스크린샷

screenshot

Reddit Full Image Preview 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}