Retina Everywhere
Upgrade interface images to Retina (HiDPI) on various sites, including Amazon.com
什么是Retina Everywhere?
Retina Everywhere是由https://sites.google.com/site/haroldmartin开发的Chrome扩展程序,该扩展的主要功能是“Upgrade interface images to Retina (HiDPI) on various sites, including Amazon.com”。
扩展截图
下载Retina Everywhere扩展crx文件
下载Retina Everywhere扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | hajkboeohfildgccolflcdedgbkpdjlc |
| 官方URL | https://chromewebstore.google.com/detail/retina-everywhere/hajkboeohfildgccolflcdedgbkpdjlc |
| 简介 | Upgrade interface images to Retina (HiDPI) on various sites, including Amazon.com |
| 文件大小 | 42.01 KB |
| 安装次数 | 154 |
| 当前版本 | 1.4.0 |
| 更新时间 | 2014-09-18 |
| 上架时间 | 2014-09-18 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | https://sites.google.com/site/haroldmartin |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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"
]
}
]
} | |