HoverTweet

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

Vad är HoverTweet?

HoverTweet är en Chrome-tillägg utvecklad av Daniel Kwasnick, och dess huvudfunktion är "This extension shows the contents of a Tweet when hovering over a link to a Tweet.".

Tilläggsskärmbilder

screenshot

Ladda ner HoverTweet-förlängningens CRX-fil

Ladda ner HoverTweet-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn HoverTweet HoverTweet
ID dbbgpnkbajonnnjkpijandlnlkfjhkli
Officiell webbadress https://chrome.google.com/webstore/detail/hovertweet/dbbgpnkbajonnnjkpijandlnlkfjhkli
Beskrivning This extension shows the contents of a Tweet when hovering over a link to a Tweet.
Filstorlek 43.56 KB
Antal Installationer 462
Aktuell Version 1.17
Senast Uppdaterad 2015-03-18
Publiceringsdatum 2015-03-18
Betyg 5.00/5 Totalt 6 Betyg
Utvecklare Daniel Kwasnick
Betalningssätt free
Stödda Språk 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\/*"
    ]
}