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 |
官方網址 | 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" ] } |