Letterblockd
Block Letterboxd users that you don't want to see reviews from
Letterblockd là gì?
Letterblockd là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Block Letterboxd users that you don't want to see reviews from".
Ả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 Letterblockd
Tải xuống các tệp mở rộng Letterblockd 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
If you don't want to see content by some user on Letterboxd, then just add them to the list in the options.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Letterblockd |
ID | dkjlmnilbamfppblfkhdmdlonfbodpkf |
URL Chính Thức | https://chromewebstore.google.com/detail/letterblockd/dkjlmnilbamfppblfkhdmdlonfbodpkf |
Mô tả | Block Letterboxd users that you don't want to see reviews from |
Kích Thước Tệp | 19.3 KB |
Số Lần Cài Đặt | 49 |
Phiên Bản Hiện Tại | 0.0.0.1 |
Cập Nhật Lần Cuối | 2020-05-25 |
Ngày Phát Hành | 2020-05-25 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Unknown |
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": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "0.0.0.1", "short_name": "__MSG_appShortName__", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "options_ui": { "page": "pages\/options.html", "browser-style": false, "open_in_tab": true }, "content_scripts": [ { "matches": [ "http:\/\/letterboxd.com\/*", "https:\/\/letterboxd.com\/*" ], "css": [ "styles\/contentscript.css" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_start", "all_frames": false } ], "permissions": [ "storage" ], "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |