Letterboxd IMDb Trivia
Shows IMDb trivia on Letterboxd movie pages.
什麼是Letterboxd IMDb Trivia?
Letterboxd IMDb Trivia是由Robert Gerlach開發的Chrome擴展程式,該擴展的主要功能是“Shows IMDb trivia on Letterboxd movie pages.”。
擴展截圖
下載Letterboxd IMDb Trivia擴展crx文件
下載Letterboxd IMDb Trivia擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Letterboxd is nice, but would be even better if it had some trivia info for each movie to learn more about it. IMDb has that trivia. This extension automatically grabs the IMDb trivia and integrates it into the Letterboxd movie page. Enjoy movie trivia on Letterboxd.
擴展基本資訊
名稱 | Letterboxd IMDb Trivia |
ID | ekhlhijgenghbhpdhbhkmcoebkilldfi |
官方網址 | https://chromewebstore.google.com/detail/letterboxd-imdb-trivia/ekhlhijgenghbhpdhbhkmcoebkilldfi |
簡介 | Shows IMDb trivia on Letterboxd movie pages. |
檔案大小 | 65.78 KB |
安裝次數 | 944 |
目前版本 | 1.5.2 |
更新時間 | 2023-11-11 |
上架時間 | 2019-05-14 |
評分 | 5.00/5 共 14 次評分 |
開發者 | Robert Gerlach |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Letterboxd IMDb Trivia", "version": "1.5.2", "description": "Shows IMDb trivia on Letterboxd movie pages.", "minimum_chrome_version": "101", "content_scripts": [ { "js": [ "js\/jquery-3.3.1.min.js", "js\/xss.js", "js\/content.js" ], "css": [ "css\/styles.css" ], "matches": [ "https:\/\/letterboxd.com\/film\/*" ], "run_at": "document_end" }, { "js": [ "js\/jquery-3.3.1.min.js", "js\/imdb-iframe.js" ], "matches": [ "https:\/\/www.imdb.com\/*" ], "run_at": "document_end", "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "js\/reload-letterboxd.js", "img\/*.png" ], "matches": [ "https:\/\/letterboxd.com\/*" ] }, { "resources": [ "js\/imdb-iframe.js" ], "matches": [ "https:\/\/www.imdb.com\/*" ] } ], "background": { "service_worker": "js\/background.js" }, "permissions": [ "storage", "declarativeNetRequestWithHostAccess" ], "host_permissions": [ "https:\/\/letterboxd.com\/film\/*", "https:\/\/www.imdb.com\/*" ], "icons": { "16": "img\/icon-16.png", "32": "img\/icon-32.png", "48": "img\/icon-48.png" }, "options_ui": { "page": "options\/index.html", "open_in_tab": false } } |