Letterboxd IMDb Trivia

Shows IMDb trivia on Letterboxd movie pages.

Letterboxd IMDb Triviaคืออะไร?

Letterboxd IMDb Trivia เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Robert Gerlach และคุณลักษณะหลักของมันคือ "Shows IMDb trivia on Letterboxd movie pages."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Letterboxd IMDb Trivia

ดาวน์โหลดไฟล์ส่วนขยาย 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 Letterboxd IMDb Trivia
ID ekhlhijgenghbhpdhbhkmcoebkilldfi
URL อย่างเป็นทางการ 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
    }
}