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" } |