Twitter Fact Check

This extension fact-checks your friends' tweets with a variety of news sources

Apa itu Twitter Fact Check?

Twitter Fact Check adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This extension fact-checks your friends' tweets with a variety of news sources".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Twitter Fact Check

Unduh file ekstensi Twitter Fact Check dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Twitter Fact Check Twitter Fact Check
ID knkgedhglgpdamdklbgoknjhmappdaoo
URL Resmi https://chromewebstore.google.com/detail/twitter-fact-check/knkgedhglgpdamdklbgoknjhmappdaoo
Deskripsi This extension fact-checks your friends' tweets with a variety of news sources
Ukuran File 667 KB
Jumlah Instalasi 23
Versi Saat Ini 1.0
Terakhir Diperbarui 2017-05-01
Tanggal Publikasi 2017-05-01
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}