HoverTweet

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

Qu'est-ce que HoverTweet ?

HoverTweet est une extension Chrome développée par Daniel Kwasnick, et sa fonction principale est "This extension shows the contents of a Tweet when hovering over a link to a Tweet.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension HoverTweet

Téléchargez les fichiers d'extension HoverTweet au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom HoverTweet HoverTweet
ID dbbgpnkbajonnnjkpijandlnlkfjhkli
URL Officiel https://chrome.google.com/webstore/detail/hovertweet/dbbgpnkbajonnnjkpijandlnlkfjhkli
Description This extension shows the contents of a Tweet when hovering over a link to a Tweet.
Taille du Fichier 43.56 KB
Nombre d'Installations 462
Version Actuelle 1.17
Dernière Mise à Jour 2015-03-18
Date de Publication 2015-03-18
Évaluation 5.00/5 Total 6 Évaluations
Développeur Daniel Kwasnick
Type de Paiement free
Langues Prises en Charge 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\/*"
    ]
}