No More Chess Ratings

Hides ratings on most screens of chess.com

O que é No More Chess Ratings?

No More Chess Ratings é uma extensão do Chrome desenvolvida por GeertenVink, e sua principal característica é "Hides ratings on most screens of chess.com".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão No More Chess Ratings

Baixe arquivos de extensão No More Chess Ratings no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        This is a little plugin that injects a css stylesheet to hide ratings on chess.com. The only page I intentionally skipped was the "Full Stats" page for each type of game.

I found that I got a lot of stress out of knowing my rating progression, and the ratings of my opponents. I constantly felt I should be doing better when my rating was below its peak, and I felt a lot of pressure to beat lower rated opponents. In addition to that I felt a lot of frustration when I didn't manage to get my rating back up or when I lost to said lower rated opponents. So I fixed it by hiding the ratings everywhere.

I may update this plugin now and then if I feel like it, but there's absolutely no guarantee of continued support.                    

Informações Básicas da Extensão

Nome No More Chess Ratings No More Chess Ratings
ID pnpmdefecmmknipkkdbbikmbkjlbnjpc
URL Oficial https://chromewebstore.google.com/detail/no-more-chess-ratings/pnpmdefecmmknipkkdbbikmbkjlbnjpc
Descrição Hides ratings on most screens of chess.com
Tamanho do Arquivo 30.38 KB
Contagem de Instalações 445
Versão Atual 2.0
Última Atualização 2023-08-18
Data de Publicação 2020-06-22
Classificação 5.00/5 Total de 15 Avaliações
Desenvolvedor GeertenVink
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No More Chess Ratings",
    "version": "2.0",
    "description": "Hides ratings on most screens of chess.com",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.chess.com\/*"
            ],
            "css": [
                "hideratings.css"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.chess.com\/*"
    ],
    "icons": {
        "16": "NoMoreChessRatings16.png",
        "32": "NoMoreChessRatings32.png",
        "48": "NoMoreChessRatings48.png",
        "128": "NoMoreChessRatings128.png"
    },
    "manifest_version": 3
}