Truths & Lies

Shows politicians truths and lies while watching YouTube videos

Truths & Liesคืออะไร?

Truths & Lies เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rtuinenburg และคุณลักษณะหลักของมันคือ "Shows politicians truths and lies while watching YouTube videos"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Truths & Lies

ดาวน์โหลดไฟล์ส่วนขยาย Truths & Lies ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
    ]
}