Truths & Lies

Shows politicians truths and lies while watching YouTube videos

Truths & Lies란 무엇입니까?

Truths & Lies은(는) rtuinenburg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows politicians truths and lies while watching YouTube videos"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Truths & Lies 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Truths & Lies Truths & Lies
ID hlfeooemkfahmelipfkgjkngiakldogf
공식 URL https://chrome.google.com/webstore/detail/truths-lies/hlfeooemkfahmelipfkgjkngiakldogf
설명 Shows politicians truths and lies while watching YouTube videos
파일 크기 90.43 KB
설치 횟수 36
현재 버전 1.0
최근 업데이트 2016-08-07
출시 날짜 2016-08-07
개발자 rtuinenburg
이메일 [email protected]
결제 유형 free
지원되는 언어 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\/*"
    ]
}