HackyBird

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

Was ist HackyBird?

HackyBird ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ...".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

HackyBird-Erweiterungs-CRX-Datei herunterladen

Laden Sie HackyBird-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name HackyBird HackyBird
ID ddlhmpomfloaidpdleeoegmpikjdchjf
Offizielle URL https://chromewebstore.google.com/detail/hackybird/ddlhmpomfloaidpdleeoegmpikjdchjf
Beschreibung Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ...
Dateigröße 57.8 KB
Installationsanzahl 488
Aktuelle Version 0.8
Letztes Update 2017-08-10
Veröffentlichungsdatum 2017-08-10
Bewertung 4.64/5 Insgesamt 11 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen 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\/*"
    ]
}