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.”。
擴展截圖
下載IMDB Watchlist Randomizer擴展crx文件
下載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 |
ID | elbfbpalmljkclkphdjmbloancjnehea |
官方網址 | 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*" ] } |