Truths & Lies

Shows politicians truths and lies while watching YouTube videos

Vad är Truths & Lies?

Truths & Lies är en Chrome-tillägg utvecklad av rtuinenburg, och dess huvudfunktion är "Shows politicians truths and lies while watching YouTube videos".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Truths & Lies-förlängningens CRX-fil

Ladda ner Truths & Lies-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Truths & Lies Truths & Lies
ID hlfeooemkfahmelipfkgjkngiakldogf
Officiell webbadress https://chrome.google.com/webstore/detail/truths-lies/hlfeooemkfahmelipfkgjkngiakldogf
Beskrivning Shows politicians truths and lies while watching YouTube videos
Filstorlek 90.43 KB
Antal Installationer 36
Aktuell Version 1.0
Senast Uppdaterad 2016-08-07
Publiceringsdatum 2016-08-07
Utvecklare rtuinenburg
E-post [email protected]
Betalningssätt free
Stödda Språk 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\/*"
    ]
}