Adds a search bar to torrent- and other websites on Letterboxd
< 脚本 Letterboxd Search Bars 的反馈
New movies have IMDb IDs that are 8 digits long while this script only assumes 7 digits. To fix this, go to line 34 and change imdbBtn = buttons[0].href.match(/tt(\d{7})/); to imdbBtn = buttons[0].href.match(/tt(\d+)/);
imdbBtn = buttons[0].href.match(/tt(\d{7})/);
imdbBtn = buttons[0].href.match(/tt(\d+)/);
登录以发布留言。
Fix for new movies
New movies have IMDb IDs that are 8 digits long while this script only assumes 7 digits. To fix this, go to line 34 and change
imdbBtn = buttons[0].href.match(/tt(\d{7})/);
toimdbBtn = buttons[0].href.match(/tt(\d+)/);