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”。
擴展截圖
下載Reddit Full Image Preview擴展crx文件
下載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 |
ID | alccgijljjooaababmbkeenmajbblnlp |
官方網址 | 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" ] } |