Letterboxd List Search

Allows you to search lists on letterboxd. Works better on smaller lists (< 2000) but will work on any list if you let the page load

Letterboxd List Search란 무엇입니까?

Letterboxd List Search은(는) jman777jman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to search lists on letterboxd. Works better on smaller lists (< 2000) but will work on any list if you let the page load"입니다.

확장 프로그램 스크린샷

screenshot

Letterboxd List Search 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Just enter a film into the search field under the right sidebar and then click enter to search

Refresh page or search for nothing to get list back to normal. Need to scroll sometimes for film's picture to display

Can only search from the first page of a list.

Will take around 5 seconds to load 10,000th film in the list.

feel free to add me https://letterboxd.com/moonhall/                    

확장 프로그램 기본 정보

이름 Letterboxd List Search Letterboxd List Search
ID jjakamoambopapdcpondjnlkdajcfnno
공식 URL https://chromewebstore.google.com/detail/letterboxd-list-search/jjakamoambopapdcpondjnlkdajcfnno
설명 Allows you to search lists on letterboxd. Works better on smaller lists (< 2000) but will work on any list if you let the page load
파일 크기 42.87 KB
설치 횟수 183
현재 버전 1.0
최근 업데이트 2023-07-21
출시 날짜 2022-07-24
평점 5.00/5 총 4 개의 평점
개발자 jman777jman
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Letterboxd List Search",
    "description": "Allows you to search lists on letterboxd. Works better on smaller lists (< 2000) but will work on any list if you let the page load",
    "icons": {
        "16": ".\/logo\/searchlogo16.png",
        "32": ".\/logo\/searchlogo32.png",
        "48": ".\/logo\/searchlogo48.png",
        "128": ".\/logo\/searchlogo128.png"
    },
    "version": "1.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/letterboxd.com\/*\/list\/*"
            ],
            "exclude_matches": [
                "https:\/\/letterboxd.com\/*\/list\/*\/page*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ]
}