TweetCred
Real-time credibility evaluation on Twitter.
TweetCred क्या है?
TweetCred Aditi Gupta द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Real-time credibility evaluation on Twitter."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TweetCred एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
TweetCred is a real-time, web-based system to assess credibility of content on Twitter. The system provides a credibility rating between 1 to 7 for each tweet on the Twitter timeline. The score is computed using a supervised automated ranking algorithm that determines credibility of a tweet based on 45 features. The system considers various factors to determine the credibility, such as, the tweet content, properties of user who posted the tweet, external URLs or pictures shared in the tweet, etc. Credibility score: 1 (low credibility) - 7 (high credibility) Please help us in evaluating and testing the system. http://twitdigest.iiitd.edu.in/TweetCred System developer: Nilaksh Das
एक्सटेंशन की मूल जानकारी
नाम | TweetCred |
ID | fbokljinlogeihdnkikeeneiankdgikg |
आधिकारिक URL | https://chromewebstore.google.com/detail/tweetcred/fbokljinlogeihdnkikeeneiankdgikg |
विवरण | Real-time credibility evaluation on Twitter. |
फ़ाइल का आकार | 305 KB |
स्थापना संख्या | 360 |
वर्तमान संस्करण | 2.5.3 |
अंतिम अपडेट | 2015-10-08 |
प्रकाशन तिथि | 2015-10-08 |
रेटिंग | 3.92/5 कुल 12 रेटिंग्स |
डेवलपर | Aditi Gupta |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://twitdigest.iiitd.edu.in/TweetCred |
सहायता पृष्ठ URL | http://twitdigest.iiitd.edu.in/TweetCred |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TweetCred", "version": "2.5.3", "author": "Nilaksh Das", "description": "Real-time credibility evaluation on Twitter.", "homepage_url": "http:\/\/twitdigest.iiitd.edu.in\/TweetCred\/", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "permissions": [ "storage", "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*", "http:\/\/precog.iiitd.edu.in\/*" ], "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "css": [ "css\/font-awesome.min.css", "css\/bootstrap.css", "css\/style.css" ], "js": [ "js\/jquery-1.10.2.min.js", "js\/bootstrap.min.js", "js\/insQ.js", "js\/app.js" ], "run_at": "document_end", "all_frames": false } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "page_action": { "default_icon": { "19": "img\/icon19.png", "38": "img\/icon38.png" }, "default_title": "Click to give feedback about TweetCred." }, "web_accessible_resources": [ "img\/*", "font\/*", "js\/jquery-1.10.2.min.map" ] } |