Retina Twitter

This extension replaces low resolution twitter avatars with a retina-ready equivalent.

Retina Twitter là gì?

Retina Twitter là một tiện ích mở rộng Chrome được phát triển bởi humanloop, và tính năng chính của nó là "This extension replaces low resolution twitter avatars with a retina-ready equivalent.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Retina Twitter

Tải xuống các tệp mở rộng Retina Twitter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Retina Twitter Retina Twitter
ID hgdfdmoaogekkpncleidmpddpijgeakp
URL Chính Thức https://chromewebstore.google.com/detail/retina-twitter/hgdfdmoaogekkpncleidmpddpijgeakp
Mô tả This extension replaces low resolution twitter avatars with a retina-ready equivalent.
Kích Thước Tệp 40.85 KB
Số Lần Cài Đặt 63
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2013-10-13
Ngày Phát Hành 2013-10-13
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển humanloop
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}