Reddit Image Preview

Previewing images on reddit is faster than ever.

Τι είναι το Reddit Image Preview;

Το Reddit Image Preview είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Alexandru Stamp, και η κύρια λειτουργία του είναι "Previewing images on reddit is faster than ever.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Reddit Image Preview

Λήψη αρχείων επέκτασης Reddit Image Preview σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Want to check an image before clicking on the link ?  This is where this extension come to help.

Best extension to use on /r/funny, /r/pcmasterrace, /r/pics , etc.
It supports images provided by imgur.com (90% of reddit.com images), gfycat.com, reddituploads.com(reddit direct upload).

Hover your mouse cursor on a post title where it`s URL(link) is an image to preview it. Image preview is displayed in the middle of the screen. To cancel the preview move the mouse somewhere else. This works on the front page and every subreddit.

To enable or disable the extension, just press the Reddit Image Preview icon in the top left then press disable/enable.

More image providers support soon.

For any questions or problems send an email to : [email protected]                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Reddit Image Preview Reddit Image Preview
ID epkgcgdkdcihbmiapdajdhnkccaggbam
Επίσημο URL https://chromewebstore.google.com/detail/reddit-image-preview/epkgcgdkdcihbmiapdajdhnkccaggbam
Περιγραφή Previewing images on reddit is faster than ever.
Μέγεθος Αρχείου 51.28 KB
Αριθμός Εγκαταστάσεων 1,066
Τρέχουσα Έκδοση 1.5
Τελευταία Ενημέρωση 2016-05-31
Ημερομηνία Δημοσίευσης 2016-05-31
Αξιολόγηση 2.91/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής Alexandru Stamp
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Image Preview",
    "version": "1.5",
    "description": "Previewing images on reddit is faster than ever.",
    "background": {
        "scripts": [
            "jquery-2.2.3.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*",
                "*:\/\/reddit.com\/*"
            ],
            "js": [
                "jquery-2.2.3.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Reddit Image Preview",
        "default_icon": "img-on.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "img-on.png"
    },
    "permissions": [
        "storage"
    ]
}