Letterboxd Film List Filters

Adds filters for a film's 'List that contains' page on Letterboxd.

Letterboxd Film List Filtersคืออะไร?

Letterboxd Film List Filters เป็นส่วนขยายของ Chrome ที่พัฒนาโดย taox และคุณลักษณะหลักของมันคือ "Adds filters for a film's 'List that contains' page on Letterboxd."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Letterboxd Film List Filters

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
}