Better Image Preview

Customize the image preview page.

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

Το Better Image Preview είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον symonxd, και η κύρια λειτουργία του είναι "Customize the image preview page.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        🔥 Lightweight extension to customize the image preview page.

For now it's only the background color, but I'd be happy to add more features. Please leave a review with a comment about what you'd like me to add.

💜 Some notes

● User settings are currently set using `storage.local`, which means that if you have Chrome Sync on, the settings won't be synced across your devices.

● The alternate method is `storage.sync`, which in turn would sync the settings. I've chosen for local for certain limitation reasons. I'll change to `storage.sync` when I figure out a way.
    
● Currently the extension only works for URLs that explicitly have an extension at the end (most cases). So images with some special URL encoding with the extension won't work for now, I do want to implement this feature.

💜 Source code

● The complete codebase for this extension can be found at: https://github.com/symonxdd/better-image-preview.

● FYI, the source code of every single installed extension / theme on the Chrome Web Store can be found locally on your computer. Use Google for instructions (they are easy).
This is also nice for people that want to fiddle with some extension to behave in a different way, or for experimental reasons.
Please note that whatever you change, is only meant for your personal reasons and not for public distribution. Also, changes made by you will be overwritten on the next update of that extension.                    

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

Όνομα Better Image Preview Better Image Preview
ID ppidlhfhfjafihcnbahjonnoijhiembh
Επίσημο URL https://chromewebstore.google.com/detail/better-image-preview/ppidlhfhfjafihcnbahjonnoijhiembh
Περιγραφή Customize the image preview page.
Μέγεθος Αρχείου 11.01 KB
Αριθμός Εγκαταστάσεων 114
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2020-09-14
Ημερομηνία Δημοσίευσης 2020-09-12
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής symonxd
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/symonxdd/better-image-preview
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Image Preview",
    "version": "1.1.0",
    "description": "Customize the image preview page.",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "16": "img\/better16.png",
        "48": "img\/better48.png",
        "128": "img\/better128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*.jpg*",
                "*:\/\/*\/*.jpeg*",
                "*:\/\/*\/*.png*",
                "*:\/\/*\/*.gif*",
                "*:\/\/*\/*.webp*",
                "*:\/\/*\/*.svg*",
                "*:\/\/*\/*.bmp*",
                "file:\/\/\/*\/*.jpg*",
                "file:\/\/\/*\/*.jpeg*",
                "file:\/\/\/*\/*.png*",
                "file:\/\/\/*\/*.gif*",
                "file:\/\/\/*\/*.webp*",
                "file:\/\/\/*\/*.svg*",
                "file:\/\/\/*\/*.bmp*"
            ],
            "js": [
                "js\/content\/content.js"
            ]
        }
    ]
}