TweetCred
Real-time credibility evaluation on Twitter.
TweetCred란 무엇입니까?
TweetCred은(는) Aditi Gupta에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Real-time credibility evaluation on Twitter."입니다.
확장 프로그램 스크린샷
TweetCred 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |