Mubi Score
Add movie scores to Mubi's Now Showing page.
Mubi Scoreとは何ですか?
Mubi Scoreはhttps://gergely.imreh.netによって開発されたChromeの拡張機能で、その主な機能は「Add movie scores to Mubi's Now Showing page.」です。
拡張機能のスクリーンショット
Mubi Score拡張機能のCRXファイルをダウンロード
Mubi Score拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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)
拡張機能の基本情報
名前 | |
ID | amdphkoacncjbkidcehbkhikmapncbpa |
公式URL | https://chromewebstore.google.com/detail/mubi-score/amdphkoacncjbkidcehbkhikmapncbpa |
説明 | Add movie scores to Mubi's Now Showing page. |
ファイルサイズ | 25.82 KB |
インストール数 | 117 |
現在のバージョン | 0.5.2 |
最終更新日 | 2021-09-11 |
公開日 | 2020-05-23 |
評価 | 3.00/5 合計 3 レビュー |
開発者 | https://gergely.imreh.net |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/imrehg/mubiscore |
ヘルプページのURL | https://github.com/imrehg/mubiscore/blob/master/README.md |
対応言語 | 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 } |