Letterboxd Ratings Remover
Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.
Wat is Letterboxd Ratings Remover?
Letterboxd Ratings Remover is een Chrome-extensie ontwikkeld door Goodbyte, en de belangrijkste functie is "Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.".
Extensie Screenshots
Download het CRX-bestand van de extensie Letterboxd Ratings Remover
Download Letterboxd Ratings Remover-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Letterboxd Ratings Remover |
ID | hjnkheioinkniboimdnmpcfcnblcmdka |
Officiële URL | https://chromewebstore.google.com/detail/letterboxd-ratings-remove/hjnkheioinkniboimdnmpcfcnblcmdka |
Beschrijving | Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations. |
Bestandsgrootte | 32.86 KB |
Aantal Installaties | 200 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2020-09-28 |
Publicatiedatum | 2019-08-30 |
Beoordeling | 4.57/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Goodbyte |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |