Letterboxd Ratings Remover
Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.
Apa itu Letterboxd Ratings Remover?
Letterboxd Ratings Remover adalah ekstensi Chrome yang dikembangkan oleh Goodbyte, dan fitur utamanya adalah "Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Letterboxd Ratings Remover
Unduh file ekstensi Letterboxd Ratings Remover dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Letterboxd Ratings Remover |
ID | hjnkheioinkniboimdnmpcfcnblcmdka |
URL Resmi | https://chromewebstore.google.com/detail/letterboxd-ratings-remove/hjnkheioinkniboimdnmpcfcnblcmdka |
Deskripsi | Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations. |
Ukuran File | 32.86 KB |
Jumlah Instalasi | 200 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2020-09-28 |
Tanggal Publikasi | 2019-08-30 |
Penilaian | 4.57/5 Total 7 Penilaian |
Pengembang | Goodbyte |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } |