Polygraph

Polygraph analyzes webpages and warns you about dishonest articles.

Что такое Polygraph?

Polygraph - это расширение Chrome, разработанное Andrew Peter Prifer, и его основная функция - "Polygraph analyzes webpages and warns you about dishonest articles.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Polygraph

Скачайте файлы расширений 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
Электронная почта [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
        }
    ]
}