RateFlix: IMDb and RT ratings on Netflix
Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX
O que é RateFlix: IMDb and RT ratings on Netflix?
RateFlix: IMDb and RT ratings on Netflix é uma extensão do Chrome desenvolvida por Pankaj Bhayare and Gaurav Panday, e sua principal característica é "Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão RateFlix: IMDb and RT ratings on Netflix
Baixe arquivos de extensão RateFlix: IMDb and RT ratings on Netflix 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
We are familiar with situations where we strain ourselves by searching ratings of ever evolving online streaming content before deciding to invest our time in it. The RateFlix extension saves you all the trouble and displays the IMDb and Rotten Tomotoes ratings right in the content-preview on Netflix. The ratings now are just a click away on Netflix itself. Happy binge-watching :)
Informações Básicas da Extensão
Nome | RateFlix: IMDb and RT ratings on Netflix |
ID | pcmbijibnnemoogikbfjdjnhablljgbp |
URL Oficial | https://chromewebstore.google.com/detail/rateflix-imdb-and-rt-rati/pcmbijibnnemoogikbfjdjnhablljgbp |
Descrição | Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX |
Tamanho do Arquivo | 25.5 KB |
Contagem de Instalações | 28 |
Versão Atual | 0.2 |
Última Atualização | 2020-08-11 |
Data de Publicação | 2020-07-23 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Pankaj Bhayare and Gaurav Panday |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RateFlix: IMDb and RT ratings on Netflix", "version": "0.2", "description": "Extention for showing IMDb and Rotten Tomatoes ratings on NETFLIX", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*", "https:\/\/www.omdbapi.com\/*" ], "js": [ "content.js" ], "css": [ "rating.css" ] } ], "icons": { "16": "extentionIcon.png", "128": "extentionIcon128.png" }, "permissions": [ "https:\/\/www.netflix.com\/*", "https:\/\/www.omdbapi.com\/*" ], "web_accessible_resources": [ "rating.js" ], "browser_action": { "default_icon": "extentionIcon.png", "default_popup": "popup.html" } } |