Letterboxd Ratings Remover
Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.
O que é Letterboxd Ratings Remover?
Letterboxd Ratings Remover é uma extensão do Chrome desenvolvida por Goodbyte, e sua principal característica é "Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Letterboxd Ratings Remover
Baixe arquivos de extensão Letterboxd Ratings Remover 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
Removes film ratings from view on Letterboxd, and hides reviews (unless clicked on). This extension helps keep movies from being spoiled and from influencing expectations. Key features: • Reviews for a film are only shown when the button "SHOW REVIEWS" is pressed • Ratings for a film are hidden • Ratings on the home page are removed
Informações Básicas da Extensão
Nome | Letterboxd Ratings Remover |
ID | hjnkheioinkniboimdnmpcfcnblcmdka |
URL Oficial | https://chromewebstore.google.com/detail/letterboxd-ratings-remove/hjnkheioinkniboimdnmpcfcnblcmdka |
Descrição | Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations. |
Tamanho do Arquivo | 32.86 KB |
Contagem de Instalações | 200 |
Versão Atual | 1.1 |
Última Atualização | 2020-09-28 |
Data de Publicação | 2019-08-30 |
Classificação | 4.57/5 Total de 7 Avaliações |
Desenvolvedor | Goodbyte |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Letterboxd Ratings Remover", "version": "1.1", "description": "Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.", "permissions": [ "declarativeContent" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" } }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.letterboxd.com\/*" ], "css": [ "myStyles.css" ], "js": [ "contentScript.js" ] } ], "manifest_version": 2 } |