AboutTheArtists Tags On IMDB
This extension adds links to the AboutTheArtists.com profile page for actors in IMDB.com cast lists.
什么是AboutTheArtists Tags On IMDB?
AboutTheArtists Tags On IMDB是由https://www.abouttheartists.com开发的Chrome扩展程序,该扩展的主要功能是“This extension adds links to the AboutTheArtists.com profile page for actors in IMDB.com cast lists.”。
扩展截图
下载AboutTheArtists Tags On IMDB扩展crx文件
下载AboutTheArtists Tags On IMDB扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Want to know where you've seen that actor before? Maybe it was on stage. When browsing IMDB.com cast lists, this extension adds a blue "a" link next to the name of any actor that has a theatre credits listed on AboutTheArtists.com. Clicking that link will open that artist's AboutTheArtists.com profile page in a new tab. When logged in to AboutTheArtists.com, this extension also allows you to search for and tag the AtA profile for a IMDb actor directly from the IMDb cast list. A blue "a" provide a link to the AtA profile associated with that artist. A green circle indicates that there is no AtA profile associated with that IMDb actor. Click on it, and we'll search the AtA database for matching names, and, if it's the same person, mark it the database. A yellow circle means there's no match, and someone has already searched our database and either couldn't find a match, or wasn't sure if the artists found were actually the same person. Click the circle and you can check for yourself. AboutTheArtists.com is the world's largest database of live theatre credits.
扩展基本信息
名称 | AboutTheArtists Tags On IMDB |
ID | maifpikceigobenmijgifkhhlngkhmbe |
官方URL | https://chromewebstore.google.com/detail/abouttheartists-tags-on-i/maifpikceigobenmijgifkhhlngkhmbe |
简介 | This extension adds links to the AboutTheArtists.com profile page for actors in IMDB.com cast lists. |
文件大小 | 60.15 KB |
安装次数 | 31 |
当前版本 | 0.0.6 |
更新时间 | 2017-10-20 |
上架时间 | 2017-10-20 |
评分 | 5.00/5 共1次评分 |
开发者 | https://www.abouttheartists.com |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AboutTheArtists Tags On IMDB", "description": "This extension adds links to the AboutTheArtists.com profile page for actors in IMDB.com cast lists.", "version": "0.0.6", "page_action": { "default_title": "AboutTheArtists Profile Connector", "default_icon": { "32": "images\/icon-32.png", "48": "images\/icon48.png", "64": "images\/icon-64.png" } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "cookies", "http:\/\/www.abouttheartists.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/www.imdb.com\/title\/*", "*:\/\/www.imdb.com\/name\/nm*" ], "css": [ "imdb.css" ], "js": [ "jquery-2.2.1.min.js", "bullseye.min.js", "index.js" ] } ] } |