reddit toxicity index

A chrome extension that helps users gauge the toxicity of reddit comment threads.

Что такое reddit toxicity index?

reddit toxicity index - это расширение Chrome, разработанное Dan Cowsill, и его основная функция - "A chrome extension that helps users gauge the toxicity of reddit comment threads.".

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

screenshot

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

Скачайте файлы расширений reddit toxicity index в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        reddit toxicity index is a Google Chrome extension that helps reddit users gauge the toxicity of comment threads.  The extension adds a color coded toxicity index (TI) to each post.  Toxic posts will have higher values, colored red.  Circle-jerky or otherwise benign posts will have lower values, colored green.                    

Основная информация о расширении

Название reddit toxicity index reddit toxicity index
ID emkalpeicbbppchileodlkjmabcaaldk
Официальный URL https://chromewebstore.google.com/detail/reddit-toxicity-index/emkalpeicbbppchileodlkjmabcaaldk
Описание A chrome extension that helps users gauge the toxicity of reddit comment threads.
Размер файла 37.47 KB
Количество установок 10
Текущая Версия 0.0.2
Последнее Обновление 2015-08-24
Дата публикации 2015-08-23
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Dan Cowsill
Тип оплаты free
Официальный сайт расширения https://bitbucket.org/dcowsill/reddit_toxicity_index/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/*",
                "http:\/\/www.reddit.com\/*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "scripts\/utils.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}