ViewTweets

View tweets featuring the URL of your active Chrome tab. Click toolbar icon or 'Command + K' (Mac) to search for tweets.

ViewTweets là gì?

ViewTweets là một tiện ích mở rộng Chrome được phát triển bởi https://weisser.io, và tính năng chính của nó là "View tweets featuring the URL of your active Chrome tab. Click toolbar icon or 'Command + K' (Mac) to search for tweets.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ViewTweets

Tải xuống các tệp mở rộng ViewTweets dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Easily view tweets featuring the URL of your active Chrome tab.

I built this because I needed it. I often found myself constantly copying URLs (of blog posts, articles, etc) and pasting them into Twitter's search to see kind of conversations were happening around them.

Old way to view tweets featuring a URL = 5 steps
1. Copy URL from nav bar
2. New Tab
3. Navigate to Twitter
4. Paste into Search
5. Click enter

New way using ViewTweets = 1 step
1. Click ViewTweets Chrome extension icon on toolbar or type 'Command + K' (Mac)

Pretty cool, right?

***FAQ***
Q: How does this work?
A: ViewTweets shows you tweets featuring the URL of your active Chrome tab when you click the icon on the toolbar or type 'Command + K' (Mac)

Q: How (under the hood) does this work?
A: This Chrome Extension takes the URL of the active Chrome tab and affixes it to the end to the search query for Twitter which enables the site to show Tweets featuring the URL.

Q: Why'd you make this?
A: See above (tl;dr to scratch my own itch)

Q: Do you look at my data? Are there any cookies? Are you with the government?
A: No. You can audit the code on this Github repo (that's why I made it public).

Please send any questions/feedback/bugs/gratitude to me via Twitter - @julianweisser                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ViewTweets ViewTweets
ID bemifmkccpafkhlknbckkapaipplfgel
URL Chính Thức https://chromewebstore.google.com/detail/viewtweets/bemifmkccpafkhlknbckkapaipplfgel
Mô tả View tweets featuring the URL of your active Chrome tab. Click toolbar icon or 'Command + K' (Mac) to search for tweets.
Kích Thước Tệp 17.57 KB
Số Lần Cài Đặt 91
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2015-12-07
Ngày Phát Hành 2015-12-06
Đánh Giá 4.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://weisser.io
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ViewTweets",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "View tweets featuring the URL of your active Chrome tab. Click toolbar icon or 'Command + K' (Mac) to search for tweets.",
    "homepage_url": "http:\/\/weisser.io",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "View tweets of this URL"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+K",
                "mac": "Command+K",
                "chromeos": "Ctrl+K",
                "linux": "Ctrl+K"
            }
        }
    }
}