Gmail Dynamic Images
Update Gmail cached images with the real ones
Gmail Dynamic Images क्या है?
Gmail Dynamic Images Dev Labs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Update Gmail cached images with the real ones"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gmail Dynamic Images एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 |
सहायता पृष्ठ URL | https://github.com/dev-labs-bg/gmail-dynamic-images/issues |
गोपनीयता नीति पृष्ठ URL | 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 } } |