Gmail Dynamic Images

Update Gmail cached images with the real ones

Gmail Dynamic Images là gì?

Gmail Dynamic Images là một tiện ích mở rộng Chrome được phát triển bởi Dev Labs, và tính năng chính của nó là "Update Gmail cached images with the real ones".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gmail Dynamic Images

Tải xuống các tệp mở rộng Gmail Dynamic Images dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gmail Dynamic Images Gmail Dynamic Images
ID liagkeaohklpkejapcepbakplhlanade
URL Chính Thức https://chromewebstore.google.com/detail/gmail-dynamic-images/liagkeaohklpkejapcepbakplhlanade
Mô tả Update Gmail cached images with the real ones
Kích Thước Tệp 490 KB
Số Lần Cài Đặt 21
Phiên Bản Hiện Tại 0.0.4
Cập Nhật Lần Cuối 2016-10-12
Ngày Phát Hành 2016-10-12
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Dev Labs
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dev-labs-bg/gmail-dynamic-images
URL Trang Trợ Giúp https://github.com/dev-labs-bg/gmail-dynamic-images/issues
URL Trang Chính Sách Bảo Mật https://privacy.devlabs.bg
Ngôn Ngữ Được Hỗ Trợ 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
    }
}