What's True Online?

Fact-check the Internet

Co to jest What's True Online??

What's True Online? to rozszerzenie Chrome opracowane przez https://whatstrue.online, a jego główną funkcją jest „Fact-check the Internet”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia What's True Online?

Pobierz pliki rozszerzeń What's True Online? w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        See if what you're reading is true!

This plugin will check stories in your Facebook feed, and inject [True] for stories that have been fact-checked and found to be true, [Likely True] for sites that demonstrate a clear duty to the truth, [Likely False] for sites that are known to lie, etc.

More: https://whatstrue.online/about                    

Podstawowe informacje o rozszerzeniu

Nazwa What's True Online? What's True Online?
ID limdakdhlgbfpefnajkeedhakljnihif
Oficjalny URL https://chromewebstore.google.com/detail/whats-true-online/limdakdhlgbfpefnajkeedhakljnihif
Opis Fact-check the Internet
Rozmiar pliku 42.34 KB
Liczba instalacji 62
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2017-02-16
Data Publikacji 2017-02-16
Deweloper https://whatstrue.online
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "What's True Online?",
    "description": "Fact-check the Internet",
    "version": "1.0.4",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/www.facebook.com\/",
        "https:\/\/whatstrue.online\/url\/check"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*"
            ],
            "css": [
                "facebook.css"
            ],
            "js": [
                "facebook.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "buttonword.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "whatstrue.js"
        ],
        "persistent": false
    }
}