Letterboxd Film List Filters
Adds filters for a film's 'List that contains' page on Letterboxd.
什么是Letterboxd Film List Filters?
Letterboxd Film List Filters是由taox开发的Chrome扩展程序,该扩展的主要功能是“Adds filters for a film's 'List that contains' page on Letterboxd.”。
扩展截图
下载Letterboxd Film List Filters扩展crx文件
下载Letterboxd Film List Filters扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension provides a small set of filters for a film's lists on Letterboxd (the "List that contains [movie]" page). It also replaces the pagination on that page with a Load more button. Available filters: • Hide lists larger than a certain size (eg. no larger than 200 movies) • Hide lists smaller than a certain size (eg. no smaller than 3) • Hide lists based on keywords (complete words & case insensitive) (eg. hide all "every movie ever", "2022 top", "Oscars nominations", etc.) (Might add additional filters in the future)
扩展基本信息
名称 | Letterboxd Film List Filters |
ID | mhibfhbacdpnhgkokldppdnckdahnbhh |
官方URL | https://chromewebstore.google.com/detail/letterboxd-film-list-filt/mhibfhbacdpnhgkokldppdnckdahnbhh |
简介 | Adds filters for a film's 'List that contains' page on Letterboxd. |
文件大小 | 58.8 KB |
安装次数 | 526 |
当前版本 | 0.0.4 |
更新时间 | 2022-02-28 |
上架时间 | 2022-02-28 |
评分 | 5.00/5 共2次评分 |
开发者 | taox |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Letterboxd Film List Filters", "version": "0.0.4", "description": "Adds filters for a film's 'List that contains' page on Letterboxd.", "content_scripts": [ { "js": [ "js\/browser-polyfill.min.js", "js\/jquery-3.3.1.min.js", "js\/content.js" ], "css": [ "css\/styles.css" ], "matches": [ "https:\/\/letterboxd.com\/film\/*\/lists\/*" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "filtermenu.html" ], "matches": [ "https:\/\/letterboxd.com\/*" ] } ], "permissions": [ "storage" ], "icons": { "16": "img\/icon-16.png", "32": "img\/icon-32.png", "48": "img\/icon-48.png" }, "manifest_version": 3 } |