Gmail Dynamic Images

Update Gmail cached images with the real ones

ما هو Gmail Dynamic Images؟

Gmail Dynamic Images هو إضافة Chrome تم تطويرها بواسطة Dev Labs، والميزة الرئيسية لها هي "Update Gmail cached images with the real ones".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Gmail Dynamic Images

قم بتنزيل ملفات الامتداد Gmail Dynamic Images بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Gmail Dynamic Images Gmail Dynamic Images
ID liagkeaohklpkejapcepbakplhlanade
عنوان URL الرسمي https://chromewebstore.google.com/detail/gmail-dynamic-images/liagkeaohklpkejapcepbakplhlanade
الوصف Update Gmail cached images with the real ones
حجم الملف 490 KB
عدد التثبيتات 21
النسخة الحالية 0.0.4
آخر تحديث 2016-10-12
تاريخ النشر 2016-10-12
تقييم 5.00/5 مجموع تقييمات 4
المطور Dev Labs
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/dev-labs-bg/gmail-dynamic-images
عنوان صفحة المساعدة https://github.com/dev-labs-bg/gmail-dynamic-images/issues
عنوان صفحة سياسة الخصوصية https://privacy.devlabs.bg
اللغات المدعومة 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
    }
}