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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}