Show This Image

Visualizes blocked images and provides a menu option to load them.

Τι είναι το Show This Image;

Το Show This Image είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://mberka.com, και η κύρια λειτουργία του είναι "Visualizes blocked images and provides a menu option to load them.".

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

screenshot
screenshot
screenshot

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

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

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

                        Convenient display of images (including backgrounds) for users browsing with images disabled.
1. A right-click option allows you to have a selected image immediately loaded and displayed on the page.
2. Custom formatting of blocked images and backgrounds. By default, marks the locations of hidden images and backgrounds so you can select them for display.
3. Adds title/"alt" text to images without it, giving clues about the image.

----Instructions----
1. Turn off images (chrome://settings/content) to see the effect. To give you greater control, ShowThisImage does not change your default image settings.
2. Customize formatting in the options (chrome://extensions/)
3. Right-click on an image and choose Show This Image to load it.

For when a page has many images and/or you do not know which you want to see, try Temporary Content Settings (https://chrome.google.com/webstore/detail/temporary-content-setting/kcpgnedeigljfpmokkmdonpejdghocff).

Feedback on problems and possible improvements is welcome!

----Permissions----
1. "All your data" is for the context menu and for interacting with the source code to show image locations and load images.
2. "Content settings" is for checking whether images are disabled on a page, and for enabling images for a few seconds while loading the selected image.

----Versions----
--v.3.3--
Images now on top by default. Added periodic image detection for images loaded by scripts. Fixed detection and styling bugs. Now marks and loads basically everything.

--v.3.2.1.1--
Fixed bug in title text display. Removed unused browser action button.

--v.3.2.1--
Better identification of selected images. Source title text. Extra tips on options page. Removed fail-to-load reload for greater usability.

--v.3.2.0--
Image elements now detected consistently. Improved loading images with abnormal sources. Fixed loading of background images. Images that are found on the page but fail to load also open in the window.

--v.3.1.0--
Background images now viewable. Functionality not affected by having JavaScript disabled on a page.

--v.3.0.0--
Images now load on-page in most cases. 

--v.2.0.1--
Cleanup and fixes to default CSS.

--v.2.0--
Custom CSS for pages with disabled/enabled images.

--v.1.0--
Initial demonstration - applies same styling to all images, even visible ones, opens images in new window.                    

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

Όνομα Show This Image Show This Image
ID maihkkiapahkbejpojgcioffhmcfnbpc
Επίσημο URL https://chromewebstore.google.com/detail/show-this-image/maihkkiapahkbejpojgcioffhmcfnbpc
Περιγραφή Visualizes blocked images and provides a menu option to load them.
Μέγεθος Αρχείου 102 KB
Αριθμός Εγκαταστάσεων 716
Τρέχουσα Έκδοση 3.3
Τελευταία Ενημέρωση 2017-06-19
Ημερομηνία Δημοσίευσης 2017-06-18
Αξιολόγηση 3.50/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής https://mberka.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://mberka.com/chrome-content-settings/showthisimage
Διεύθυνση URL της Σελίδας Βοήθειας http://mberka.com/chrome-content-settings/showthisimage/support
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show This Image",
    "version": "3.3",
    "description": "Visualizes blocked images and provides a menu option to load them.",
    "author": "Martin Berka",
    "short_name": "Show Image",
    "minimum_chrome_version": "35",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "js": [
                "pageStyler.js"
            ]
        }
    ],
    "icons": {
        "16": "16-context.png",
        "48": "48-detail.png",
        "128": "128-icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "ftp:\/\/*\/*",
        "contentSettings",
        "tabs",
        "storage"
    ]
}