ImageX

Enable/disable show/hide display of images by altering the Content Settings for a page.

Wat is ImageX?

ImageX is een Chrome-extensie ontwikkeld door Peter Duerden, en de belangrijkste functie is "Enable/disable show/hide display of images by altering the Content Settings for a page.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie ImageX

Download ImageX-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        I'm a web developer and I built this extension to quickly toggle the display of images on and off using a simple toolbar button. I mainly use it for checking how HTML-based emails will look in email clients that don't load images by default, but it would also be useful for any site where you don't want to load images.

This toggling is achieved by changing the Content Settings for the URL of the current page (Settings > Under the Bonnet > Privacy > Content Settings... > Images > Manage Exceptions...) and then reloading it, rather than simple hiding of images within the HTML using Javascript. Unlike other image hiding extensions ImageX disables the downloading of images so no requests for images are sent at all during reload. The reload is also set to bypass the local cache so that all assets (except images if disabled) are re-requested for freshness.

The toolbar button clearly shows the current state of the setting by changing the image (see screenshots). The current setting is also remembered between browser sessions and updated when a site is loaded, handy for those sites you visit regularly but don't want to see the adverts!

The extension works on http://, https:// and file:/// URLs but you may need to enabled file access if you need it (Tools > Extensions > expand ImageX > check "Allow access to file URLs").

During installation ImageX will request access to:

• Your data on all websites
• Yours tabs and browsing activity
• Settings that specify whether websites can use features such as cookies, JavaScript and plug-ins

The first is needed so that requests to file:/// resources can be handled (see above note about enabling file access).
The second is needed so that ImageX can updated whenever the current tab is changed or updated.
The third is needed to retrieve and update the Images Content Setting (see Settings > Under the Bonnet > Privacy > Content Settings... > Images > Manage Exceptions...)

PRIVACY STATEMENT: This extension uses Google Analytics to record when the tool is used. No personal information or URLs are tracked. This is satisfy my curiosity as a web developer about using Google Analytics and see if my extension is being used by anyone.                    

Basisinformatie over de Extensie

Naam ImageX ImageX
ID leebpoidhlfgjiepgjfafdbnlpnpmfod
Officiële URL https://chromewebstore.google.com/detail/imagex/leebpoidhlfgjiepgjfafdbnlpnpmfod
Beschrijving Enable/disable show/hide display of images by altering the Content Settings for a page.
Bestandsgrootte 20 KB
Aantal Installaties 645
Huidige Versie 0.4
Laatst Bijgewerkt 2012-05-15
Publicatiedatum 2012-05-15
Beoordeling 4.23/5 Totaal 22 Beoordelingen
Ontwikkelaar Peter Duerden
Betalingswijze free
Ondersteunde Talen en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ImageX",
    "version": "0.4",
    "description": "Enable\/disable show\/hide display of images by altering the Content Settings for a page.",
    "permissions": [
        "contentSettings",
        "tabs",
        ""
    ],
    "browser_action": {
        "default_icon": "disabled.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "manifest_version": 2
}