XKCD Hovertext

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

XKCD Hovertext क्या है?

XKCD Hovertext Cameron Lakenen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension replaces native browser title text with a customizable popup for xkcd images."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में XKCD Hovertext एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}