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 extension that generates a random movie from the imdb user's watchlist."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Imdb Watchlist Random Movie Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}