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.”。
擴展截圖
下載XKCD Hovertext擴展crx文件
下載XKCD Hovertext擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | lbbfkdbeojkogjofbololpkmghdgdmkp |
官方網址 | 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" } |