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 |
| 公式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\/*"
]
} | |