HoverTweet

This extension shows the contents of a Tweet when hovering over a link to a Tweet.

HoverTweetとは何ですか?

HoverTweetはDaniel Kwasnickによって開発されたChromeの拡張機能で、その主な機能は「This extension shows the contents of a Tweet when hovering over a link to a Tweet.」です。

拡張機能のスクリーンショット

screenshot

HoverTweet拡張機能のCRXファイルをダウンロード

HoverTweet拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        HoverTweet displays the contents of a tweet when you hover your mouse over a link to it. Similar in concept to HoverZoom/Imagus, but for tweets instead of images. You can hold "control" to lock the popup and click links within tweets.

HoverTweet has no evil tracking nonsense. It is open source, with the code available at:
https://github.com/dkwasnick/HoverTweet

----------------

Changelog:
v 1.17
• Fixed long words breaking out of boxes

v 1.16 
• Fixed links to /statuses/

v 1.15
• Fixed extension to not break for languages other than English

v 1.1
• Cleaned up code for extracting tweet information from HTML download
• New non-placeholder icons
• Mark links as visited when they are displayed (does not maintain state if refreshed)
• Can hold control to move mouse independently and click links within tweets
• Can click full name in tweet to go to profile page                    

拡張機能の基本情報

名前 HoverTweet HoverTweet
ID dbbgpnkbajonnnjkpijandlnlkfjhkli
公式URL https://chrome.google.com/webstore/detail/hovertweet/dbbgpnkbajonnnjkpijandlnlkfjhkli
説明 This extension shows the contents of a Tweet when hovering over a link to a Tweet.
ファイルサイズ 43.56 KB
インストール数 462
現在のバージョン 1.17
最終更新日 2015-03-18
公開日 2015-03-18
評価 5.00/5 合計 6 レビュー
開発者 Daniel Kwasnick
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HoverTweet",
    "description": "This extension shows the contents of a Tweet when hovering over a link to a Tweet.",
    "version": "1.17",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "hovertweet.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/*.twitter.com\/*"
    ]
}