Mubi Score
Add movie scores to Mubi's Now Showing page.
O que é Mubi Score?
Mubi Score é uma extensão do Chrome desenvolvida por https://gergely.imreh.net, e sua principal característica é "Add movie scores to Mubi's Now Showing page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Mubi Score
Baixe arquivos de extensão Mubi Score no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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)
Informações Básicas da Extensão
Nome | |
ID | amdphkoacncjbkidcehbkhikmapncbpa |
URL Oficial | https://chromewebstore.google.com/detail/mubi-score/amdphkoacncjbkidcehbkhikmapncbpa |
Descrição | Add movie scores to Mubi's Now Showing page. |
Tamanho do Arquivo | 25.82 KB |
Contagem de Instalações | 117 |
Versão Atual | 0.5.2 |
Última Atualização | 2021-09-11 |
Data de Publicação | 2020-05-23 |
Classificação | 3.00/5 Total de 3 Avaliações |
Desenvolvedor | https://gergely.imreh.net |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/imrehg/mubiscore |
URL da Página de Ajuda | https://github.com/imrehg/mubiscore/blob/master/README.md |
Idiomas Suportados | 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 } |