Letterboxd Film List Filters
Adds filters for a film's 'List that contains' page on Letterboxd.
Was ist Letterboxd Film List Filters?
Letterboxd Film List Filters ist eine Chrome-Erweiterung, die von taox entwickelt wurde, und ihr Hauptmerkmal ist "Adds filters for a film's 'List that contains' page on Letterboxd.".
Erweiterungsscreenshots
Letterboxd Film List Filters-Erweiterungs-CRX-Datei herunterladen
Laden Sie Letterboxd Film List Filters-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
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) Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mhibfhbacdpnhgkokldppdnckdahnbhh |
| Offizielle URL | https://chromewebstore.google.com/detail/letterboxd-film-list-filt/mhibfhbacdpnhgkokldppdnckdahnbhh |
| Beschreibung | Adds filters for a film's 'List that contains' page on Letterboxd. |
| Dateigröße | 58.8 KB |
| Installationsanzahl | 526 |
| Aktuelle Version | 0.0.4 |
| Letztes Update | 2022-02-28 |
| Veröffentlichungsdatum | 2022-02-28 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | taox |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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
} | |