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
公式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
Eメール [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
}