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".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου 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 |
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" ] } |