TweetCred
Real-time credibility evaluation on Twitter.
什麼是TweetCred?
TweetCred是由Aditi Gupta開發的Chrome擴展程式,該擴展的主要功能是“Real-time credibility evaluation on Twitter.”。
擴展截圖
下載TweetCred擴展crx文件
下載TweetCred擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } |