My IMDb
Highlights the movies you've already seen (voted for) when searching IMDb or displaying actor/director pages.
My IMDb là gì?
My IMDb là một tiện ích mở rộng Chrome được phát triển bởi https://sites.google.com/site/c00lextensionz, và tính năng chính của nó là "Highlights the movies you've already seen (voted for) when searching IMDb or displaying actor/director pages.".
Ả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 My IMDb
Tải xuống các tệp mở rộng My IMDb 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
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".
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | My IMDb |
ID | ngicopfkgbodejbbfalbmobdpjebhhmb |
URL Chính Thức | https://chromewebstore.google.com/detail/my-imdb/ngicopfkgbodejbbfalbmobdpjebhhmb |
Mô tả | Highlights the movies you've already seen (voted for) when searching IMDb or displaying actor/director pages. |
Kích Thước Tệp | 83.57 KB |
Số Lần Cài Đặt | 6,274 |
Phiên Bản Hiện Tại | 5.1 |
Cập Nhật Lần Cuối | 2023-02-02 |
Ngày Phát Hành | 2020-06-17 |
Đánh Giá | 4.36/5 Tổng số 142 Đánh Giá |
Nhà Phát Triển | https://sites.google.com/site/c00lextensionz |
[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": "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" ] } |