Reddit Full Image Preview
This extension automatically resizes oversized images to fit within their containers
Wat is Reddit Full Image Preview?
Reddit Full Image Preview is een Chrome-extensie ontwikkeld door Chris, en de belangrijkste functie is "This extension automatically resizes oversized images to fit within their containers".
Extensie Screenshots
Download het CRX-bestand van de extensie Reddit Full Image Preview
Download Reddit Full Image Preview-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Reddit Full Image Preview |
ID | alccgijljjooaababmbkeenmajbblnlp |
Officiële URL | https://chromewebstore.google.com/detail/reddit-full-image-preview/alccgijljjooaababmbkeenmajbblnlp |
Beschrijving | This extension automatically resizes oversized images to fit within their containers |
Bestandsgrootte | 29.53 KB |
Aantal Installaties | 1,818 |
Huidige Versie | 0.0.0.8 |
Laatst Bijgewerkt | 2023-05-22 |
Publicatiedatum | 2023-02-02 |
Beoordeling | 3.60/5 Totaal 20 Beoordelingen |
Ontwikkelaar | Chris |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |