HackyBird
Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ...
HackyBirdคืออะไร?
HackyBird เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ..."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HackyBird
ดาวน์โหลดไฟล์ส่วนขยาย 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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | 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\/*" ] } |