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 ...”。
擴展截圖
下載HackyBird擴展crx文件
下載HackyBird擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | ddlhmpomfloaidpdleeoegmpikjdchjf |
| 官方網址 | 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\/*"
]
} | |