Polygraph

Polygraph analyzes webpages and warns you about dishonest articles.

Polygraphとは何ですか?

PolygraphはAndrew Peter Priferによって開発されたChromeの拡張機能で、その主な機能は「Polygraph analyzes webpages and warns you about dishonest articles.」です。

拡張機能のスクリーンショット

screenshot

Polygraph拡張機能のCRXファイルをダウンロード

Polygraph拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        I made Polygraph to combat clickbait. Many journalists and writers use overly sensationalistic, exaggerating or downright deceitful headlines in order to attract attention. The extension analyzes the title and tells you about all the things that are possibly wrong with the article.

Important! Polygraph is an experiment. As such, it is far from perfect. It is also open source: http://bit.ly/2j4zG6m                    

拡張機能の基本情報

名前 Polygraph Polygraph
ID mbmblpolabjhoedckfbimgbnoogmcooi
公式URL https://chromewebstore.google.com/detail/polygraph/mbmblpolabjhoedckfbimgbnoogmcooi
説明 Polygraph analyzes webpages and warns you about dishonest articles.
ファイルサイズ 82.61 KB
インストール数 34
現在のバージョン 0.1.1
最終更新日 2017-01-17
公開日 2017-01-17
評価 5.00/5 合計 2 レビュー
開発者 Andrew Peter Prifer
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/andrewpeterprifer/Polygraph
ヘルプページのURL https://github.com/andrewpeterprifer/Polygraph/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDescription__",
    "version": "0.1.1",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "pages\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}