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