HackyBird
Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ...
Cos'è HackyBird?
HackyBird è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ...".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HackyBird
Scarica i file di estensione HackyBird in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | ddlhmpomfloaidpdleeoegmpikjdchjf |
| URL Ufficiale | https://chromewebstore.google.com/detail/hackybird/ddlhmpomfloaidpdleeoegmpikjdchjf |
| Descrizione | Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ... |
| Dimensione del File | 57.8 KB |
| Conteggio Installazioni | 488 |
| Versione Corrente | 0.8 |
| Ultimo Aggiornamento | 2017-08-10 |
| Data di Pubblicazione | 2017-08-10 |
| Valutazione | 4.64/5 Totale 11 Valutazioni |
| Sviluppatore | Unknown |
| Tipo di Pagamento | free |
| Lingue Supportate | 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\/*"
]
} | |