HackyBird

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

HackyBird란 무엇입니까?

HackyBird은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ..."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

HackyBird 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 HackyBird HackyBird
ID ddlhmpomfloaidpdleeoegmpikjdchjf
공식 URL https://chromewebstore.google.com/detail/hackybird/ddlhmpomfloaidpdleeoegmpikjdchjf
설명 Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ...
파일 크기 57.8 KB
설치 횟수 488
현재 버전 0.8
최근 업데이트 2017-08-10
출시 날짜 2017-08-10
평점 4.64/5 총 11 개의 평점
개발자 Unknown
결제 유형 free
지원되는 언어 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\/*"
    ]
}