Mubi Score
Add movie scores to Mubi's Now Showing page.
What is Mubi Score?
Mubi Score is a Chrome extension developed by https://gergely.imreh.net, and its main feature is "Add movie scores to Mubi's Now Showing page.".
Extension Screenshots
Download Mubi Score Extension CRX File
Download Mubi Score extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Automatically add ratings to movies on Mubi's Now Showing page, using the Open Movie Database (OMDb). Just add an OMDb API key in the extension options page, and check out the current movie listing! (this extension is not affiliated with either Mubi or OMDb)
Extension Basic Information
Name | |
ID | amdphkoacncjbkidcehbkhikmapncbpa |
Official URL | https://chromewebstore.google.com/detail/mubi-score/amdphkoacncjbkidcehbkhikmapncbpa |
Description | Add movie scores to Mubi's Now Showing page. |
File Size | 25.82 KB |
Installation Count | 117 |
Current Version | 0.5.2 |
Last Updated | 2021-09-11 |
Publish Date | 2020-05-23 |
Rating | 3.00/5 Total 3 Ratings |
Developer | https://gergely.imreh.net |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/imrehg/mubiscore |
Help Page URL | https://github.com/imrehg/mubiscore/blob/master/README.md |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mubi Score", "version": "0.5.2", "author": "Gergely Imreh", "developer": { "name": "Gergely Imreh", "url": "https:\/\/github.com\/imrehg\/mubiscore" }, "description": "Add movie scores to Mubi's Now Showing page.", "permissions": [ "storage", "https:\/\/www.omdbapi.com\/" ], "icons": { "16": "icons\/mubiscore16.png", "48": "icons\/mubiscore48.png", "128": "icons\/mubiscore128.png" }, "browser_action": { "default_icon": { "16": "icons\/mubiscore16.png", "48": "icons\/mubiscore48.png", "128": "icons\/mubiscore128.png" }, "default_title": "MubiScore", "default_popup": "options.html" }, "options_ui": { "page": "options.html", "chrome_style": true, "browser_style": true }, "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "57.0" } }, "content_scripts": [ { "matches": [ "https:\/\/mubi.com\/showing", "https:\/\/mubi.com\/*\/showing" ], "run_at": "document_idle", "css": [ "content.css" ], "js": [ "browser-polyfill.js", "contentScript.js" ] } ], "manifest_version": 2 } |