Movie Ratings
Retrieve movie ratings from Rotten Tomatoes.
什么是Movie Ratings?
Movie Ratings是由Ronak Patel开发的Chrome扩展程序,该扩展的主要功能是“Retrieve movie ratings from Rotten Tomatoes.”。
扩展截图
下载Movie Ratings扩展crx文件
下载Movie Ratings扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Movie Ratings lets you view the Rotten Tomatoes and IMDb ratings for a movie. All you have to do is highlight the name of a movie, right click, and select "Get Movie Rating" (you can also right click on a link). After installing the extension the tabs currently opened will need to be reloaded.
扩展基本信息
名称 | |
ID | pfmcppclannbbilgigjlodcjkkohjiom |
官方URL | https://chrome.google.com/webstore/detail/movie-ratings/pfmcppclannbbilgigjlodcjkkohjiom |
简介 | Retrieve movie ratings from Rotten Tomatoes. |
文件大小 | 80.87 KB |
安装次数 | 194 |
当前版本 | 1.6.2 |
更新时间 | 2015-01-18 |
上架时间 | 2015-01-18 |
评分 | 3.00/5 共13次评分 |
开发者 | Ronak Patel |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Movie Ratings", "version": "1.6.2", "description": "Retrieve movie ratings from Rotten Tomatoes.", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "page": "background.html" }, "permissions": [ "contextMenus", "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "listeners.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "display.html", "display.js", "config.js", "listeners.js", "lib\/*.js" ], "content_security_policy": "script-src 'self' https:\/\/rt-fetcher.herokuapp.com; object-src 'self'" } |