Letterboxd Ratings Remover
Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.
Letterboxd Ratings Remover là gì?
Letterboxd Ratings Remover là một tiện ích mở rộng Chrome được phát triển bởi Goodbyte, và tính năng chính của nó là "Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Letterboxd Ratings Remover
Tải xuống các tệp mở rộng Letterboxd Ratings Remover dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Letterboxd Ratings Remover |
ID | hjnkheioinkniboimdnmpcfcnblcmdka |
URL Chính Thức | https://chromewebstore.google.com/detail/letterboxd-ratings-remove/hjnkheioinkniboimdnmpcfcnblcmdka |
Mô tả | Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations. |
Kích Thước Tệp | 32.86 KB |
Số Lần Cài Đặt | 200 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2020-09-28 |
Ngày Phát Hành | 2019-08-30 |
Đánh Giá | 4.57/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Goodbyte |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |