Imdb Watchlist Random Movie Generator
Chrome extension that generates a random movie from the imdb user's watchlist.
Imdb Watchlist Random Movie Generator란 무엇입니까?
Imdb Watchlist Random Movie Generator은(는) jburto94에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension that generates a random movie from the imdb user's watchlist."입니다.
확장 프로그램 스크린샷
Imdb Watchlist Random Movie Generator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Imdb Watchlist Random Movie Generator |
ID | jlcigechjendaoibkekbdhgpgnndcool |
공식 URL | https://chromewebstore.google.com/detail/imdb-watchlist-random-mov/jlcigechjendaoibkekbdhgpgnndcool |
설명 | Chrome extension that generates a random movie from the imdb user's watchlist. |
파일 크기 | 23.93 KB |
설치 횟수 | 603 |
현재 버전 | 1.2 |
최근 업데이트 | 2022-09-03 |
출시 날짜 | 2018-12-05 |
평점 | 4.50/5 총 8 개의 평점 |
개발자 | jburto94 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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 } |