IMDB Watchlist Randomizer

A browser extension that allows users to filter & randomly pick a movie, tv-series etc, from an IMDB watchlist.

IMDB Watchlist Randomizer क्या है?

IMDB Watchlist Randomizer alktheorg द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A browser extension that allows users to filter & randomly pick a movie, tv-series etc, from an IMDB watchlist."।

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

screenshot
screenshot
screenshot

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

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

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

                        Scans an IMDB watchlist and allows you to randomize it with filtering options.
GitHub Repo: https://github.com/AlkTheOrg/imdb-watchlist-randomizer

- In your first time, open a watchlist and spare few seconds to "Scan & Randomize" your list.
- Now the watchlist is stored in your browser.
- It allows you to hide rating, poster, genres and credits information on the result.

More information on the "About" page of the repo: https://github.com/AlkTheOrg/imdb-watchlist-randomizer/blob/main/ABOUT.md#about-the-extension

Version Updates:
v1.1.1 Update: Last randomized multimedia will appear at the top instead of bottom.

v1.1.0 Updates:
- Removed unnecessary "Save Options" button. Now it auto saves your options.
- Removed the footer.
- There were collisions between elements when there was no poster. Fixed it and improved styling.                    

एक्सटेंशन की मूल जानकारी

नाम IMDB Watchlist Randomizer IMDB Watchlist Randomizer
ID elbfbpalmljkclkphdjmbloancjnehea
आधिकारिक URL https://chromewebstore.google.com/detail/imdb-watchlist-randomizer/elbfbpalmljkclkphdjmbloancjnehea
विवरण A browser extension that allows users to filter & randomly pick a movie, tv-series etc, from an IMDB watchlist.
फ़ाइल का आकार 26.22 KB
स्थापना संख्या 442
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2022-06-21
प्रकाशन तिथि 2021-08-14
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर alktheorg
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/AlkTheOrg/imdb-watchlist-randomizer/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMDB Watchlist Randomizer",
    "description": "A browser extension that allows users to filter & randomly pick a movie, tv-series etc, from an IMDB watchlist.",
    "version": "1.1.1",
    "manifest_version": 3,
    "icons": {
        "16": ".\/images\/icon-16x16.png",
        "36": ".\/images\/icon-36x36.png",
        "48": ".\/images\/icon-48x48.png",
        "128": ".\/images\/icon-128x128.png"
    },
    "background": {
        "service_worker": ".\/background.js"
    },
    "action": {
        "default_popup": ".\/popup.html",
        "default_icons": {
            "16": ".\/images\/icon-16x16.png",
            "36": ".\/images\/icon-36x36.png",
            "48": ".\/images\/icon-48x48.png",
            "128": ".\/images\/icon-128x128.png"
        }
    },
    "permissions": [
        "scripting",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/www.imdb.com\/user\/*\/watchlist*",
        "http:\/\/www.imdb.com\/user\/*\/watchlist*"
    ]
}