HoverTweet

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

Cos'è HoverTweet?

HoverTweet è un'estensione di Chrome sviluppata da Daniel Kwasnick, e la sua funzione principale è "This extension shows the contents of a Tweet when hovering over a link to a Tweet.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione HoverTweet

Scarica i file di estensione HoverTweet in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome HoverTweet HoverTweet
ID dbbgpnkbajonnnjkpijandlnlkfjhkli
URL Ufficiale https://chrome.google.com/webstore/detail/hovertweet/dbbgpnkbajonnnjkpijandlnlkfjhkli
Descrizione This extension shows the contents of a Tweet when hovering over a link to a Tweet.
Dimensione del File 43.56 KB
Conteggio Installazioni 462
Versione Corrente 1.17
Ultimo Aggiornamento 2015-03-18
Data di Pubblicazione 2015-03-18
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore Daniel Kwasnick
Tipo di Pagamento free
Lingue Supportate 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\/*"
    ]
}