HackyBird
Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ...
HackyBird क्या है?
HackyBird Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Filter tweets by keyword, Sort Twitter timeline by popularity (retweets, likes, users) & more ..."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में HackyBird एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } |