Imdb Watchlist Random Movie Generator

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

Cos'è Imdb Watchlist Random Movie Generator?

Imdb Watchlist Random Movie Generator è un'estensione di Chrome sviluppata da jburto94, e la sua funzione principale è "Chrome extension that generates a random movie from the imdb user's watchlist.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Imdb Watchlist Random Movie Generator

Scarica i file di estensione Imdb Watchlist Random Movie Generator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Imdb Watchlist Random Movie Generator Imdb Watchlist Random Movie Generator
ID jlcigechjendaoibkekbdhgpgnndcool
URL Ufficiale https://chromewebstore.google.com/detail/imdb-watchlist-random-mov/jlcigechjendaoibkekbdhgpgnndcool
Descrizione Chrome extension that generates a random movie from the imdb user's watchlist.
Dimensione del File 23.93 KB
Conteggio Installazioni 603
Versione Corrente 1.2
Ultimo Aggiornamento 2022-09-03
Data di Pubblicazione 2018-12-05
Valutazione 4.50/5 Totale 8 Valutazioni
Sviluppatore jburto94
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
}