XKCD Hovertext

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

XKCD Hovertext란 무엇입니까?

XKCD Hovertext은(는) Cameron Lakenen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension replaces native browser title text with a customizable popup for xkcd images."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

XKCD Hovertext 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 XKCD Hovertext XKCD Hovertext
ID lbbfkdbeojkogjofbololpkmghdgdmkp
공식 URL https://chromewebstore.google.com/detail/xkcd-hovertext/lbbfkdbeojkogjofbololpkmghdgdmkp
설명 This extension replaces native browser title text with a customizable popup for xkcd images.
파일 크기 72.92 KB
설치 횟수 183
현재 버전 1.6.1
최근 업데이트 2017-02-09
출시 날짜 2017-02-09
평점 5.00/5 총 8 개의 평점
개발자 Cameron Lakenen
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/camupod/xkcdhovertext
도움말 페이지 URL https://github.com/camupod/xkcdhovertext/issues
지원되는 언어 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"
}