Ratio'd

Google Chrome extension which highlights tweets that got badly "Ratio'd".

Ratio'd란 무엇입니까?

Ratio'd은(는) Ratio'd에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Google Chrome extension which highlights tweets that got badly "Ratio'd"."입니다.

확장 프로그램 스크린샷

screenshot

Ratio'd 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Ratio'd is a chrome extension that highlights tweets with exceptionally bad 
ratios on Twitter, by adding a small bar under any noteworthy tweet, to help with analyzing which tweets do well, and which do not.

*** The Ratio ***

The ratio is originally described as the ratio of retweets or likes to the amount of replies a tweet has. If replies outweigh the likes, the tweet is generally considered to be a bad tweet.

*** Open Source ***

The plugin is released Open Source under the MIT License! 
https://github.com/PRTTMPRPHT/ratiod 

*** Limitations ***

Currently, the following limitations apply:

- The extension can display the ratio bar only on feed-style tweets, not on, for example, status pages. This is due to a lack of information about the amount of replies on status pages.
- The extension currently only works correctly if the language is set to one of the supported languages, see the README on GitHub for an exhaustive list.

*** Calculation Methods ***

While the ratio is generally more of a meme / a rule-of-thumb, we actually want to quantify it to be able to decide rationally if a ratio is noteworthy or not. For this purpose, the extension offers two modes of calculation that can be used.

# The Ratio Richter (default)

This is a logarithmic scale designed by "Data for Progress"(https://www.dataforprogress.org/the-ratio-richter-scale) to measure the severity of a tweet and is the closest to a gold standard for measuring "the ratio" there is.
It is inspired by the Richter scale for measuring earthquake severity and is defined as follows:

`ln(replies / likes) * log(replies)`

# Balanced Score

This, while not technically being a ratio, is a very simple scoring method which was used in the development process of this plugin.
It is defined as follows:

`((retweets - replies) + 2 * (likes - replies)) / 3`

Unlike the Ratio Richter, this takes into account the retweets a tweet has. It also behaves consistently for tweets on the positive side of the spectrum, should you choose to display the bar on these tweets as well. For this reason, it is still available as an optional alternative.

*** Settings ***

There are some settings you can use to tweak the extension's behavior by heading into the extension options.

# Calculation Mode

see "Calculation Methods".

# Display positive ratios

This extension is configured by default to only highlight exceptionally negative tweets to reduce clutter while browsing Twitter. Usually the ratio is only really interesting when a tweet did badly.

If you are interested in displaying the ratio bar for exceptionally positive tweets as well, you can do so by enabling it in the extension options.

*** Further legalese ***
TWITTER, TWEET, RETWEET and the  Twitter Bird logo are trademarks of  Twitter Inc. or its affiliates.                    

확장 프로그램 기본 정보

이름 Ratio'd Ratio'd
ID kmcheccfkipimiamcgdbjoemdoobiaim
공식 URL https://chromewebstore.google.com/detail/ratiod/kmcheccfkipimiamcgdbjoemdoobiaim
설명 Google Chrome extension which highlights tweets that got badly "Ratio'd".
파일 크기 19.27 KB
설치 횟수 76
현재 버전 1.0.9
최근 업데이트 2023-03-05
출시 날짜 2022-02-28
평점 5.00/5 총 2 개의 평점
개발자 Ratio'd
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://github.com/PRTTMPRPHT/ratiod/blob/master/docs/privacy.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Ratio'd",
    "description": "Google Chrome extension which highlights tweets that got badly \"Ratio'd\".",
    "version": "1.0.9",
    "author": "@PRTTMPRPHT",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mobile.twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "options_page": "options\/options.html",
    "incognito": "split",
    "web_accessible_resources": [
        {
            "resources": [
                "script.js"
            ],
            "matches": [
                "https:\/\/mobile.twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ]
        }
    ]
}