Twitter Fact Check
This extension fact-checks your friends' tweets with a variety of news sources
什麼是Twitter Fact Check?
Twitter Fact Check是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This extension fact-checks your friends' tweets with a variety of news sources”。
擴展截圖
下載Twitter Fact Check擴展crx文件
下載Twitter Fact Check擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension identifies political tweets and creates a dropdown list filled with relevant articles from the guardian. Extension also includes a search functionality to get new results.
擴展基本資訊
名稱 | Twitter Fact Check |
ID | knkgedhglgpdamdklbgoknjhmappdaoo |
官方網址 | https://chromewebstore.google.com/detail/twitter-fact-check/knkgedhglgpdamdklbgoknjhmappdaoo |
簡介 | This extension fact-checks your friends' tweets with a variety of news sources |
檔案大小 | 667 KB |
安裝次數 | 23 |
目前版本 | 1.0 |
更新時間 | 2017-05-01 |
上架時間 | 2017-05-01 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Unknown |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": true, "scripts": [ "reload.js" ] }, "name": "Twitter Fact Check", "version": "1.0", "manifest_version": 2, "description": "This extension fact-checks your friends' tweets with a variety of news sources", "permissions": [ "webRequest", "tabs", "*:\/\/*.twitter.com\/*", "file:\/\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "response.js" ], "all_frames": true } ], "web_accessible_resources": [ "font-awesome-4.7.0\/css\/font-awesome.min.css", "*.ttf", "*.woff", "*.woff2", "*.png" ] } |