Imdb Watchlist Random Movie Generator
Chrome extension that generates a random movie from the imdb user's watchlist.
Imdb Watchlist Random Movie Generator là gì?
Imdb Watchlist Random Movie Generator là một tiện ích mở rộng Chrome được phát triển bởi jburto94, và tính năng chính của nó là "Chrome extension that generates a random movie from the imdb user's 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 Random Movie Generator
Tải xuống các tệp mở rộng Imdb Watchlist Random Movie Generator 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
Chrome extension that generates a random movie the imdb user's watchlist. Works better if you scroll through your list before clicking on the generate button, so it can allow the titles to load into the window. This extension is not affiliated nor makes money from IMDB, just a tool to help indecisive people like me pick a movie from their watchlist to watch next. The extension does not use any user data, as it only reads and updates objects directly on the browser's DOM.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Imdb Watchlist Random Movie Generator |
ID | jlcigechjendaoibkekbdhgpgnndcool |
URL Chính Thức | https://chromewebstore.google.com/detail/imdb-watchlist-random-mov/jlcigechjendaoibkekbdhgpgnndcool |
Mô tả | Chrome extension that generates a random movie from the imdb user's watchlist. |
Kích Thước Tệp | 23.93 KB |
Số Lần Cài Đặt | 603 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2022-09-03 |
Ngày Phát Hành | 2018-12-05 |
Đánh Giá | 4.50/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | jburto94 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Imdb Watchlist Random Movie Generator", "version": "1.2", "description": "Chrome extension that generates a random movie from the imdb user's watchlist.", "page_action": { "default_icon": { "16": "thirdParty\/icon16.png", "32": "thirdParty\/icon32.png" } }, "icons": { "16": "thirdParty\/icon16.png", "32": "thirdParty\/icon32.png", "48": "thirdParty\/icon48.png", "128": "thirdParty\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.imdb.com\/user\/*\/watchlist*" ], "all_frames": true, "js": [ "generate.js" ], "css": [ "main.css" ] } ], "manifest_version": 3 } |