Mubi Score
Add movie scores to Mubi's Now Showing page.
Wat is Mubi Score?
Mubi Score is een Chrome-extensie ontwikkeld door https://gergely.imreh.net, en de belangrijkste functie is "Add movie scores to Mubi's Now Showing page.".
Extensie Screenshots
Download het CRX-bestand van de extensie Mubi Score
Download Mubi Score-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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)
Basisinformatie over de Extensie
Naam | |
ID | amdphkoacncjbkidcehbkhikmapncbpa |
Officiële URL | https://chromewebstore.google.com/detail/mubi-score/amdphkoacncjbkidcehbkhikmapncbpa |
Beschrijving | Add movie scores to Mubi's Now Showing page. |
Bestandsgrootte | 25.82 KB |
Aantal Installaties | 117 |
Huidige Versie | 0.5.2 |
Laatst Bijgewerkt | 2021-09-11 |
Publicatiedatum | 2020-05-23 |
Beoordeling | 3.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | https://gergely.imreh.net |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/imrehg/mubiscore |
Help Pagina-URL | https://github.com/imrehg/mubiscore/blob/master/README.md |
Ondersteunde Talen | 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 } |