Letterboxd Ratings Remover

Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.

Was ist Letterboxd Ratings Remover?

Letterboxd Ratings Remover ist eine Chrome-Erweiterung, die von Goodbyte entwickelt wurde, und ihr Hauptmerkmal ist "Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.".

Erweiterungsscreenshots

screenshot

Letterboxd Ratings Remover-Erweiterungs-CRX-Datei herunterladen

Laden Sie Letterboxd Ratings Remover-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Letterboxd Ratings Remover Letterboxd Ratings Remover
ID hjnkheioinkniboimdnmpcfcnblcmdka
Offizielle URL https://chromewebstore.google.com/detail/letterboxd-ratings-remove/hjnkheioinkniboimdnmpcfcnblcmdka
Beschreibung Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.
Dateigröße 32.86 KB
Installationsanzahl 200
Aktuelle Version 1.1
Letztes Update 2020-09-28
Veröffentlichungsdatum 2019-08-30
Bewertung 4.57/5 Insgesamt 7 Bewertungen
Entwickler Goodbyte
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}