Truths & Lies

Shows politicians truths and lies while watching YouTube videos

Was ist Truths & Lies?

Truths & Lies ist eine Chrome-Erweiterung, die von rtuinenburg entwickelt wurde, und ihr Hauptmerkmal ist "Shows politicians truths and lies while watching YouTube videos".

Erweiterungsscreenshots

screenshot
screenshot

Truths & Lies-Erweiterungs-CRX-Datei herunterladen

Laden Sie Truths & Lies-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        While you're watching YouTube videos that are about US politicians, this extension will automatically look up the truths and lies the politician and show you a tally of their truths and lies.  You can get detailed information about each truth and lie by clicking on the stats.                    

Grundlegende Informationen zur Erweiterung

Name Truths & Lies Truths & Lies
ID hlfeooemkfahmelipfkgjkngiakldogf
Offizielle URL https://chrome.google.com/webstore/detail/truths-lies/hlfeooemkfahmelipfkgjkngiakldogf
Beschreibung Shows politicians truths and lies while watching YouTube videos
Dateigröße 90.43 KB
Installationsanzahl 36
Aktuelle Version 1.0
Letztes Update 2016-08-07
Veröffentlichungsdatum 2016-08-07
Entwickler rtuinenburg
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Truths & Lies",
    "description": "Shows politicians truths and lies while watching YouTube videos",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "background": {
        "scripts": [
            "jquery.js",
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "content_style.css"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/www.politifact.com\/*"
    ]
}