Mubi Ratings
Shows Rotten Tomato ratings when browsing Mubi
什么是Mubi Ratings?
Mubi Ratings是由vretallick开发的Chrome扩展程序,该扩展的主要功能是“Shows Rotten Tomato ratings when browsing Mubi”。
扩展截图
下载Mubi Ratings扩展crx文件
下载Mubi Ratings扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Overlays Rotten Tomato ratings when browsing Mubi, so you can make the right film choice. Now works with latest site redesign and using OMDB API as Rotten Tomatoes have discontinued their public API.
扩展基本信息
名称 | |
ID | dnpdjibenonbeglpjdklibeiodfjndlh |
官方URL | https://chrome.google.com/webstore/detail/mubi-ratings/dnpdjibenonbeglpjdklibeiodfjndlh |
简介 | Shows Rotten Tomato ratings when browsing Mubi |
文件大小 | 257 KB |
安装次数 | 53 |
当前版本 | 1.5 |
更新时间 | 2016-12-14 |
上架时间 | 2016-12-14 |
评分 | 2.25/5 共4次评分 |
开发者 | vretallick |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mubi Ratings", "description": "Shows Rotten Tomato ratings when browsing Mubi", "version": "1.5", "permissions": [ "http:\/\/omdbapi.com\/", "http:\/\/*.mubi.com\/", "https:\/\/*.mubi.com\/", "tabs" ], "page_action": { "default_icon": "assets\/icon2.png", "default_title": "Mubi Ratings", "default_popup": "mubiratings.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.mubi.com\/*" ], "js": [ "js\/jquery.js", "js\/mubiratings.js" ], "css": [ "css\/styles.css" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "web_accessible_resources": [ "js\/jquery-1.10.2.min.map", "css\/styles.css", "assets\/smalltomato.png" ], "icons": { "16": "assets\/16.png", "48": "assets\/48.png", "128": "assets\/128.png" }, "author": "Victoria Retallick" } |