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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension that allows users to filter & randomly pick a movie, tv-series etc, from an IMDB watchlist."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

IMDB Watchlist Randomizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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*"
    ]
}