XKCD Hovertext

This extension replaces native browser title text with a customizable popup for xkcd images.

XKCD Hovertext là gì?

XKCD Hovertext là một tiện ích mở rộng Chrome được phát triển bởi Cameron Lakenen, và tính năng chính của nó là "This extension replaces native browser title text with a customizable popup for xkcd images.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng XKCD Hovertext 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

                        This extension allows you to view xkcd mouse over text in a hover box instead of the normal built-in tooltip (which generally doesn't stay up very long and doesn't look nice, etc).

The appearance and behavior of the box is highly customizable (check out the options page for the extension).

Enjoy!

UPDATE: 
Version 1.6.1: update manifest to support https
Version 1.6: add support for customizing font and whether the text is "small-caps" or normal
Version 1.5: upgraded to manifest v2; added what-if.xkcd.com support; removed Google reader support (since it has been discontinued)
Version 1.4 fixes bugs caused by new page layout on xkcd.com
Version 1.3 now supports Google Reader                    

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

Tên XKCD Hovertext XKCD Hovertext
ID lbbfkdbeojkogjofbololpkmghdgdmkp
URL Chính Thức https://chromewebstore.google.com/detail/xkcd-hovertext/lbbfkdbeojkogjofbololpkmghdgdmkp
Mô tả This extension replaces native browser title text with a customizable popup for xkcd images.
Kích Thước Tệp 72.92 KB
Số Lần Cài Đặt 183
Phiên Bản Hiện Tại 1.6.1
Cập Nhật Lần Cuối 2017-02-09
Ngày Phát Hành 2017-02-09
Đánh Giá 5.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Cameron Lakenen
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/camupod/xkcdhovertext
URL Trang Trợ Giúp https://github.com/camupod/xkcdhovertext/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "XKCD Hovertext",
    "description": "This extension replaces native browser title text with a customizable popup for xkcd images.",
    "version": "1.6.1",
    "background": {
        "scripts": [
            "options.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "xkcdhovertext.js"
            ],
            "css": [
                "xkcdhovertext.css"
            ],
            "matches": [
                "https:\/\/xkcd.com\/*",
                "https:\/\/xkcd.org\/*",
                "https:\/\/xkcd.net\/*",
                "https:\/\/www.xkcd.com\/*",
                "https:\/\/www.xkcd.org\/*",
                "https:\/\/www.xkcd.net\/*",
                "https:\/\/what-if.xkcd.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html"
}