My IMDb
Highlights the movies you've already seen (voted for) when searching IMDb or displaying actor/director pages.
什么是My IMDb?
My IMDb是由https://sites.google.com/site/c00lextensionz开发的Chrome扩展程序,该扩展的主要功能是“Highlights the movies you've already seen (voted for) when searching IMDb or displaying actor/director pages.”。
扩展截图
下载My IMDb扩展crx文件
下载My IMDb扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Highlights movie titles and adds your ratings for movies you've already seen (voted for) when searching IMDb, displaying actor/director pages, or browsing movie lists (e.g. Top 250 voted by users, Awards, Box Office lists). To customize the highlighting colors, right click on the extension's icon and choose "Options".
扩展基本信息
名称 | My IMDb |
ID | ngicopfkgbodejbbfalbmobdpjebhhmb |
官方URL | https://chromewebstore.google.com/detail/my-imdb/ngicopfkgbodejbbfalbmobdpjebhhmb |
简介 | Highlights the movies you've already seen (voted for) when searching IMDb or displaying actor/director pages. |
文件大小 | 83.57 KB |
安装次数 | 6,274 |
当前版本 | 5.1 |
更新时间 | 2023-02-02 |
上架时间 | 2020-06-17 |
评分 | 4.36/5 共142次评分 |
开发者 | https://sites.google.com/site/c00lextensionz |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "My IMDb", "version": "5.1", "description": "Highlights the movies you've already seen (voted for) when searching IMDb or displaying actor\/director pages.", "icons": { "48": "myimdb48.png", "128": "myimdb128.png" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*.imdb.com\/*", "https:\/\/*.imdb.com\/*" ], "exclude_globs": [ "http:\/\/*.imdb.com\/user\/ur*\/lists*", "http:\/\/*.imdb.com\/user\/ur*\/ratings*" ], "run_at": "document_end", "js": [ "myimdb.js" ], "css": [ "myimdb.css" ] } ], "manifest_version": 3, "permissions": [ "storage" ] } |