Galleryzer

Creates a gallery view of images on page.

Τι είναι το Galleryzer;

Το Galleryzer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον laxu, και η κύρια λειτουργία του είναι "Creates a gallery view of images on page.".

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

screenshot
screenshot

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

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

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

                        Creates an image gallery out of all the images on page that are above the size specified in extension settings (to avoid showing header and banner images etc). Very convenient for viewing for example image threads on forums.

- Lightweight - doesn't use any additional Javascript libraries.
- Safe - Does not inject ads or analytics, does not send any data to any remote server.
- Responsive - scales between 2-4 columns based on browser window size.
- No duplicate images. Checks image sources for duplicate images so for example on forums where the same image might be quoted multiple times, the gallery only shows one instance of it.
- Light and dark theme option.
- Lightbox for showing image in full size. Also handles links leading to a larger version of the image.
- Support for showing forum thread page navigation in gallery and auto opening gallery when moving between thread pages. Support might vary based on forum software
- See options for keyboard shortcuts.

Release notes:

2.3.0
- Refactored code
- Various small bug fixes
- Even faster

2.2.0
- Compiled with newer tools.
- Support all safe URL schemes allowed for extensions by Google.
- Load at document idle so it has even less impact on your page loading speed.

2.1.0
- Add getting context text for image.
- Various bug fixes and tweaks

Copyright Mikko Lakomaa. Creative Commons Attribution + Non-Commercial license.                    

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

Όνομα Galleryzer Galleryzer
ID nieodpeajmoimhojmopkljlkcppamaec
Επίσημο URL https://chromewebstore.google.com/detail/galleryzer/nieodpeajmoimhojmopkljlkcppamaec
Περιγραφή Creates a gallery view of images on page.
Μέγεθος Αρχείου 37.13 KB
Αριθμός Εγκαταστάσεων 929
Τρέχουσα Έκδοση 2.3.0
Τελευταία Ενημέρωση 2020-12-21
Ημερομηνία Δημοσίευσης 2018-02-04
Αξιολόγηση 4.80/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής laxu
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Galleryzer",
    "version": "2.3.0",
    "manifest_version": 2,
    "description": "Creates a gallery view of images on page.",
    "permissions": [
        "tabs",
        "storage",
        ""
    ],
    "browser_action": {
        "default_icon": "images\/icon-32.png",
        "default_title": "Galleryzer"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "galleryzer.js"
            ],
            "css": [
                "galleryzer.css"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "gallery.css"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    }
}