Tune (experimental)

Tune is a Chrome extension that helps people control the volume of the conversation they see.

Что такое Tune (experimental)?

Tune (experimental) - это расширение Chrome, разработанное https://www.perspectiveapi.com, и его основная функция - "Tune is a Chrome extension that helps people control the volume of the conversation they see.".

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

screenshot
screenshot

Скачать файл CRX расширения Tune (experimental)

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

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

                        Tune is an experimental Chrome extension from Jigsaw that lets people customize how much toxicity they want to see in comments across the internet. Tune builds on the same machine learning models that power Perspective (https://www.perspectiveapi.com) to let people set the “volume” of conversations on a number of popular platforms, including YouTube, Facebook, Twitter, Reddit, and Disqus.

Tune lets you turn the volume of toxic comments down for “zen mode” to skip comments completely, or turn it up to see everything—even the mean stuff. Or you can set the volume somewhere in between to customize the level of toxicity (e.g. attacks, insults, profanity, etc) you’re willing to see in comments.

The machine learning powering Tune is experimental. It still misses some toxic comments and incorrectly hides some non-toxic comments. We’re constantly working to improve the underlying technology, and users can easily give feedback right in the tool to help us improve our algorithms. Tune isn’t meant to be a solution for direct targets of harassment (for whom seeing direct threats can be vital for their safety), nor is Tune a solution for all toxicity. Rather, it’s an experiment to show people how machine learning technology can create new ways to empower people as they read discussions online. 

Tune is part of the Conversation-AI research project (https://conversationai.github.io/) and is completely open source, so you can learn more, explore the code, or contribute directly on github (https://github.com/conversationai/perspective-viewership-extension).

The extension currently works on English language comments only. All non-English comments will be shown above and hidden below a pre-defined threshold.


FAQs

Q: Are the comments I read being associated with my account or saved by Tune?
A: No. Comment text is sent to Perspective API for scoring then is automatically deleted after the score is returned. The initial sign-in for Tune is used to provide access to Perspective API.

Q: What data is stored when I submit my feedback or corrections through Tune?
A: If you submit feedback via clicking About>Feedback, the Google feedback report will contain the user id of the account you are signed into with Chrome at that time. Separately, if you submit a correction to how a comment is scored (i.e. answering  “Should this be hidden? Yes /No”) the text of the comment and your answer is stored for future training, but the submission is not linked to your user ID.                    

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

Название Tune (experimental) Tune (experimental)
ID gdfknffdmmjakmlikbpdngpcpbbfhbnp
Официальный URL https://chromewebstore.google.com/detail/tune-experimental/gdfknffdmmjakmlikbpdngpcpbbfhbnp
Описание Tune is a Chrome extension that helps people control the volume of the conversation they see.
Размер файла 915 KB
Количество установок 2,408
Текущая Версия 0.2.6 experimental
Последнее Обновление 2019-12-17
Дата публикации 2019-12-17
Рейтинг 3.15/5 Всего 27 оценок
Разработчик https://www.perspectiveapi.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.perspectiveapi.com/
URL страницы политики конфиденциальности https://policies.google.com/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "description": "Tune is a Chrome extension that helps people control the volume of the conversation they see.",
    "browser_action": {
        "default_icon": "popup\/ic_tune_quiet.png",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "128": "Tune-chromestore-icon-1x.png"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "css": [
                "content_script\/styles.css"
            ],
            "js": [
                "content_script\/customElements\/runtime.js",
                "content_script\/customElements\/polyfills.js",
                "content_script\/customElements\/main.js",
                "content_script\/content_script.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/www.reddit.com\/*",
                "https:\/\/new.reddit.com\/*",
                "https:\/\/twitter.com\/*",
                "https:\/\/www.facebook.com\/*",
                "https:\/\/disqus.com\/embed\/*"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "identity",
        "storage"
    ],
    "web_accessible_resources": [
        "*.js",
        "*.css",
        "*.ico",
        "*.png",
        "*.html",
        "*.svg"
    ],
    "name": "Tune (experimental)",
    "version": "0.2.6",
    "version_name": "0.2.6 experimental",
    "content_security_policy": "script-src 'self' https:\/\/www.google.com https:\/\/www.google-analytics.com https:\/\/support.google.com https:\/\/www.gstatic.com; object-src 'self'",
    "oauth2": {
        "client_id": "321499867993-rusjetqie983ic5v896ocepp6bstq2ta.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    }
}