ShuffleFlix - Netflix Random Episode Button
This chrome extension adds a random episode button to Netflix.
O que é ShuffleFlix - Netflix Random Episode Button?
ShuffleFlix - Netflix Random Episode Button é uma extensão do Chrome desenvolvida por https://www.flixed.io, e sua principal característica é "This chrome extension adds a random episode button to Netflix.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ShuffleFlix - Netflix Random Episode Button
Baixe arquivos de extensão ShuffleFlix - Netflix Random Episode Button 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
Here's how you use ShuffleFlix. 1. Install the extension. 2. Click on any TV show. Next to "Episodes" you should see a "Random Episode" button. 3. If you're in the middle of playing an episode, you'll se a new button in the bottom right corner of the screen. It should look like two twin arrows. Click it, and you can switch to a random episode from there too. Enjoy! Developed by Flixed.io - A one-stop shop for learning about streaming and cord-cutting.
Informações Básicas da Extensão
Nome | ShuffleFlix - Netflix Random Episode Button |
ID | copfkimibpnfpdggfjencnehgfgmpphf |
URL Oficial | https://chromewebstore.google.com/detail/shuffleflix-netflix-rando/copfkimibpnfpdggfjencnehgfgmpphf |
Descrição | This chrome extension adds a random episode button to Netflix. |
Tamanho do Arquivo | 423 KB |
Contagem de Instalações | 1,659 |
Versão Atual | 1.0.0 |
Última Atualização | 2019-06-16 |
Data de Publicação | 2019-06-16 |
Classificação | 3.72/5 Total de 18 Avaliações |
Desenvolvedor | https://www.flixed.io |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://flixed.io |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ShuffleFlix - Netflix Random Episode Button", "version": "1.0.0", "version_name": "1.0.0", "description": "This chrome extension adds a random episode button to Netflix.", "icons": { "128": "\/img\/logo.png" }, "browser_action": { "default_icon": "\/img\/logo.png", "default_popup": "\/pages\/popup\/index.html" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.netflix.com\/*" ], "js": [ "\/js\/main_content_script.js" ] } ], "permissions": [ "https:\/\/www.netflix.com\/*" ], "web_accessible_resources": [ "\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/connect.facebook.net; object-src 'self'" } |