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 là gì?
IMDB Watchlist Randomizer là một tiện ích mở rộng Chrome được phát triển bởi alktheorg, và tính năng chính của nó là "A browser extension that allows users to filter & randomly pick a movie, tv-series etc, from an IMDB watchlist.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng IMDB Watchlist Randomizer
Tải xuống các tệp mở rộng IMDB Watchlist Randomizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | IMDB Watchlist Randomizer |
ID | elbfbpalmljkclkphdjmbloancjnehea |
URL Chính Thức | https://chromewebstore.google.com/detail/imdb-watchlist-randomizer/elbfbpalmljkclkphdjmbloancjnehea |
Mô tả | A browser extension that allows users to filter & randomly pick a movie, tv-series etc, from an IMDB watchlist. |
Kích Thước Tệp | 26.22 KB |
Số Lần Cài Đặt | 442 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2022-06-21 |
Ngày Phát Hành | 2021-08-14 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | alktheorg |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/AlkTheOrg/imdb-watchlist-randomizer/issues |
Ngôn Ngữ Được Hỗ Trợ | 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*" ] } |