Imdb Watchlist Random Movie Generator

Chrome extension that generates a random movie from the imdb user's watchlist.

Imdb Watchlist Random Movie Generatorคืออะไร?

Imdb Watchlist Random Movie Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jburto94 และคุณลักษณะหลักของมันคือ "Chrome extension that generates a random movie from the imdb user's watchlist."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Imdb Watchlist Random Movie Generator

ดาวน์โหลดไฟล์ส่วนขยาย Imdb Watchlist Random Movie Generator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Chrome extension that generates a random movie the imdb user's watchlist. Works better if you scroll through your list before clicking on the generate button, so it can allow the titles to load into the window.

This extension is not affiliated nor makes money from IMDB, just a tool to help indecisive people like me pick a movie from their watchlist to watch next.

The extension does not use any user data, as it only reads and updates objects directly on the browser's DOM.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Imdb Watchlist Random Movie Generator Imdb Watchlist Random Movie Generator
ID jlcigechjendaoibkekbdhgpgnndcool
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/imdb-watchlist-random-mov/jlcigechjendaoibkekbdhgpgnndcool
คำอธิบาย Chrome extension that generates a random movie from the imdb user's watchlist.
ขนาดไฟล์ 23.93 KB
จำนวนการติดตั้ง 603
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2022-09-03
วันที่เผยแพร่ 2018-12-05
คะแนน 4.50/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา jburto94
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Imdb Watchlist Random Movie Generator",
    "version": "1.2",
    "description": "Chrome extension that generates a random movie from the imdb user's watchlist.",
    "page_action": {
        "default_icon": {
            "16": "thirdParty\/icon16.png",
            "32": "thirdParty\/icon32.png"
        }
    },
    "icons": {
        "16": "thirdParty\/icon16.png",
        "32": "thirdParty\/icon32.png",
        "48": "thirdParty\/icon48.png",
        "128": "thirdParty\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.imdb.com\/user\/*\/watchlist*"
            ],
            "all_frames": true,
            "js": [
                "generate.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "manifest_version": 3
}