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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον alktheorg, και η κύρια λειτουργία του είναι "A browser extension that allows users to filter & randomly pick a movie, tv-series etc, from an IMDB watchlist.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης IMDB Watchlist Randomizer

Λήψη αρχείων επέκτασης IMDB Watchlist Randomizer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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*"
    ]
}