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是由jburto94開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension that generates a random movie from the imdb user's watchlist.”。

擴展截圖

screenshot

下載Imdb Watchlist Random Movie Generator擴展crx文件

下載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
官方網址 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
}