Retina Everywhere
Upgrade interface images to Retina (HiDPI) on various sites, including Amazon.com
What is Retina Everywhere?
Retina Everywhere is a Chrome extension developed by https://sites.google.com/site/haroldmartin, and its main feature is "Upgrade interface images to Retina (HiDPI) on various sites, including Amazon.com".
Extension Screenshots
Download Retina Everywhere Extension CRX File
Download Retina Everywhere extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Made for Apple MacBook Pro with Mac OS X. Supported sites: Amazon iTunes Preview (yes, really) The Verge AppleInsider HipChat Created entirely in CSS for ultra fast loading. https://github.com/hbmartin/chrome-retina
Extension Basic Information
Name | Retina Everywhere |
ID | hajkboeohfildgccolflcdedgbkpdjlc |
Official URL | https://chromewebstore.google.com/detail/retina-everywhere/hajkboeohfildgccolflcdedgbkpdjlc |
Description | Upgrade interface images to Retina (HiDPI) on various sites, including Amazon.com |
File Size | 42.01 KB |
Installation Count | 154 |
Current Version | 1.4.0 |
Last Updated | 2014-09-18 |
Publish Date | 2014-09-18 |
Rating | 5.00/5 Total 3 Ratings |
Developer | https://sites.google.com/site/haroldmartin |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Retina Everywhere", "version": "1.4.0", "description": "Upgrade interface images to Retina (HiDPI) on various sites, including Amazon.com", "icons": { "48": "icon48.png", "128": "icon128.png" }, "manifest_version": 2, "web_accessible_resources": [ "font\/fontello.woff" ], "permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.amazon.com\/*" ], "run_at": "document_end", "css": [ "fontello.css", "amazon.css" ] }, { "matches": [ "*:\/\/*.hipchat.com\/chat" ], "run_at": "document_end", "css": [ "fontello.css", "hipchat.css" ] }, { "matches": [ "*:\/\/itunes.apple.com\/*" ], "run_at": "document_end", "css": [ "fontello.css", "itunes.css" ] }, { "matches": [ "*:\/\/www.theverge.com\/*" ], "run_at": "document_end", "css": [ "verge.css" ] }, { "matches": [ "*:\/\/*.appleinsider.com\/*" ], "run_at": "document_end", "css": [ "appleinsider.css" ] } ] } |