Retina Twitter
This extension replaces low resolution twitter avatars with a retina-ready equivalent.
什么是Retina Twitter?
Retina Twitter是由humanloop开发的Chrome扩展程序,该扩展的主要功能是“This extension replaces low resolution twitter avatars with a retina-ready equivalent.”。
扩展截图
下载Retina Twitter扩展crx文件
下载Retina Twitter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Replaces twitter avatars (profile pics) with a higher resolution version.
Makes Twitter.com a more enjoyable experience for those with a HiDPI monitor.
(Open Source: https://github.com/jordn/retina-twitter) 扩展基本信息
| 名称 | |
| ID | hgdfdmoaogekkpncleidmpddpijgeakp |
| 官方URL | https://chromewebstore.google.com/detail/retina-twitter/hgdfdmoaogekkpncleidmpddpijgeakp |
| 简介 | This extension replaces low resolution twitter avatars with a retina-ready equivalent. |
| 文件大小 | 40.85 KB |
| 安装次数 | 63 |
| 当前版本 | 1.1 |
| 更新时间 | 2013-10-13 |
| 上架时间 | 2013-10-13 |
| 评分 | 3.50/5 共2次评分 |
| 开发者 | humanloop |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Retina Twitter",
"description": "This extension replaces low resolution twitter avatars with a retina-ready equivalent.",
"version": "1.1",
"icons": {
"48": "logo-48.png",
"128": "logo-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*"
],
"js": [
"jquery-2.0.0.min.js",
"main.js"
],
"run_at": "document_end"
}
],
"permissions": [
"https:\/\/twitter.com\/"
],
"web_accessible_resources": [
"jquery-2.0.0.min.js",
"jquery.min.map"
]
} | |