Letterboxd Ratings Remover
Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.
Qu'est-ce que Letterboxd Ratings Remover ?
Letterboxd Ratings Remover est une extension Chrome développée par Goodbyte, et sa fonction principale est "Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Letterboxd Ratings Remover
Téléchargez les fichiers d'extension Letterboxd Ratings Remover au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Letterboxd Ratings Remover |
ID | hjnkheioinkniboimdnmpcfcnblcmdka |
URL Officiel | https://chromewebstore.google.com/detail/letterboxd-ratings-remove/hjnkheioinkniboimdnmpcfcnblcmdka |
Description | Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations. |
Taille du Fichier | 32.86 KB |
Nombre d'Installations | 200 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2020-09-28 |
Date de Publication | 2019-08-30 |
Évaluation | 4.57/5 Total 7 Évaluations |
Développeur | Goodbyte |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |