reddit toxicity index

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

Co to jest reddit toxicity index?

reddit toxicity index to rozszerzenie Chrome opracowane przez Dan Cowsill, a jego główną funkcją jest „A chrome extension that helps users gauge the toxicity of reddit comment threads.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia reddit toxicity index

Pobierz pliki rozszerzeń reddit toxicity index w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa reddit toxicity index reddit toxicity index
ID emkalpeicbbppchileodlkjmabcaaldk
Oficjalny URL https://chromewebstore.google.com/detail/reddit-toxicity-index/emkalpeicbbppchileodlkjmabcaaldk
Opis A chrome extension that helps users gauge the toxicity of reddit comment threads.
Rozmiar pliku 37.47 KB
Liczba instalacji 10
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2015-08-24
Data Publikacji 2015-08-23
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Dan Cowsill
Typ Płatności free
Strona Rozszerzenia https://bitbucket.org/dcowsill/reddit_toxicity_index/
Obsługiwane Języki 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
        }
    ]
}