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”。

扩展截图

screenshot

下载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 Twitter Fact Check
ID knkgedhglgpdamdklbgoknjhmappdaoo
官方URL 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"
    ]
}