Fix Image WebCache
Fixes Gmail image webcache for specified domains.
Τι είναι το Fix Image WebCache;
Το Fix Image WebCache είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jiri Tyr, και η κύρια λειτουργία του είναι "Fixes Gmail image webcache for specified domains.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Fix Image WebCache
Λήψη αρχείων επέκτασης Fix Image WebCache σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
If you see broken images in your Gmail inbox, it could be caused by images pointing to your internal web server (e.g. Jira system) which Google is trying to cache. This extension helps to remove the Google image web cache and point the images directly to the web server. The extension will only work if you can open the images from your browser (i.e. you are connected to the internal network).
Βασικές Πληροφορίες Επέκτασης
Όνομα | Fix Image WebCache |
ID | koimnfpoocfeklhjnkekpbdfniimfmpn |
Επίσημο URL | https://chromewebstore.google.com/detail/fix-image-webcache/koimnfpoocfeklhjnkekpbdfniimfmpn |
Περιγραφή | Fixes Gmail image webcache for specified domains. |
Μέγεθος Αρχείου | 100 KB |
Αριθμός Εγκαταστάσεων | 28 |
Τρέχουσα Έκδοση | 1.2 |
Τελευταία Ενημέρωση | 2014-02-04 |
Ημερομηνία Δημοσίευσης | 2014-02-04 |
Αξιολόγηση | 3.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Jiri Tyr |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/jtyr/fix-image-webcache |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fix Image WebCache", "version": "1.2", "description": "Fixes Gmail image webcache for specified domains.", "icons": { "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "browser_action": { "default_icon": "icons\/icon-48.png", "default_title": "Fix Image WebCache" }, "options_page": "html\/options.html", "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/mail.google.com\/mail\/*", "https:\/\/mail.google.com\/mail\/*" ], "js": [ "scripts\/jquery-2.0.2.min.js", "scripts\/contentscript.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "scripts\/jquery-2.0.2.min.map" ], "permissions": [ "storage" ] } |