HackyBird

Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ...

HackyBird là gì?

HackyBird là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ...".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng HackyBird 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

                        Filter & Sort your twitter stream with HackyBird ! 


Guide : https://github.com/hackybird/chrome/


Features : 
==========
- Filter out tweets by keywords 
- Sort stream by popularity (retweets & likes).
- Assign weights to users to rank them up / down. 
- Mark tweets as "read".
- Fast one click sort.
- No signup required !

Issues / Feature request here : https://github.com/hackybird/chrome/issues                    

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

Tên HackyBird HackyBird
ID ddlhmpomfloaidpdleeoegmpikjdchjf
URL Chính Thức https://chromewebstore.google.com/detail/hackybird/ddlhmpomfloaidpdleeoegmpikjdchjf
Mô tả Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ...
Kích Thước Tệp 57.8 KB
Số Lần Cài Đặt 488
Phiên Bản Hiện Tại 0.8
Cập Nhật Lần Cuối 2017-08-10
Ngày Phát Hành 2017-08-10
Đánh Giá 4.64/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HackyBird",
    "version": "0.8",
    "description": "Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ...",
    "icons": {
        "16": "favicon-16x16.png",
        "32": "favicon-48x48.png",
        "64": "favicon-64x64.png",
        "128": "favicon-128x128.png"
    },
    "browser_action": {
        "default_icon": "favicon-16x16.png"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.twitter.com\/*",
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "jquery-3.0.0.min.js",
                "toastr\/toastr.js",
                "content.js"
            ],
            "css": [
                "toastr\/toastr.css",
                "content.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "http:\/\/*.twitter.com\/*",
        "https:\/\/*.twitter.com\/*"
    ]
}