Gmail Dynamic Images

Update Gmail cached images with the real ones

Apa itu Gmail Dynamic Images?

Gmail Dynamic Images adalah ekstensi Chrome yang dikembangkan oleh Dev Labs, dan fitur utamanya adalah "Update Gmail cached images with the real ones".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Gmail Dynamic Images

Unduh file ekstensi Gmail Dynamic Images dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Gmail caches all external urls. That makes it impossible to read the most recent data of the dynamic images (i.e. votes and other server generated images).

How the extension works:

1. The extension works in background mode and it's logic is executed only if the opened tab URL is https://mail.google.com/*
2. In the extension's Option page - you can list all domain names, those you want to enable dynamic images (stop caching).                    

Informasi Dasar Ekstensi

Nama Gmail Dynamic Images Gmail Dynamic Images
ID liagkeaohklpkejapcepbakplhlanade
URL Resmi https://chromewebstore.google.com/detail/gmail-dynamic-images/liagkeaohklpkejapcepbakplhlanade
Deskripsi Update Gmail cached images with the real ones
Ukuran File 490 KB
Jumlah Instalasi 21
Versi Saat Ini 0.0.4
Terakhir Diperbarui 2016-10-12
Tanggal Publikasi 2016-10-12
Penilaian 5.00/5 Total 4 Penilaian
Pengembang Dev Labs
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/dev-labs-bg/gmail-dynamic-images
URL Halaman Bantuan https://github.com/dev-labs-bg/gmail-dynamic-images/issues
URL Halaman Kebijakan Privasi https://privacy.devlabs.bg
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Dynamic Images",
    "version": "0.0.4",
    "manifest_version": 2,
    "description": "Update Gmail cached images with the real ones",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "19": "icons\/icon19.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "default_locale": "en",
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ],
    "options_ui": {
        "page": "src\/options.html",
        "chrome_style": true
    }
}