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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |