Audio/Video Playback Speed Controller
A simple interface to control the playback speed of audio and video elements in a webpage.
O que é Audio/Video Playback Speed Controller?
Audio/Video Playback Speed Controller é uma extensão do Chrome desenvolvida por Chris Gallegos, e sua principal característica é "A simple interface to control the playback speed of audio and video elements in a webpage.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Audio/Video Playback Speed Controller
Baixe arquivos de extensão Audio/Video Playback Speed Controller 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
Controls the playback speed of all audio and video elements on a webpage. Features: - No permissions required - 5 preset speeds - Custom speed slider color coded to indicate fast-forward/slow-motion: - Green means normal speed - Cyan means fast-forward - Red means slow-motion - Custom speed slider snaps into place for common speeds - Speed setting is automatically saved for each individual webpage
Informações Básicas da Extensão
Nome | Audio/Video Playback Speed Controller |
ID | adibdjpkkmpgfidnjngnfdpcghohhbmm |
URL Oficial | https://chromewebstore.google.com/detail/audiovideo-playback-speed/adibdjpkkmpgfidnjngnfdpcghohhbmm |
Descrição | A simple interface to control the playback speed of audio and video elements in a webpage. |
Tamanho do Arquivo | 450 KB |
Contagem de Instalações | 15,128 |
Versão Atual | 1.1 |
Última Atualização | 2022-01-10 |
Data de Publicação | 2020-04-30 |
Classificação | 4.44/5 Total de 27 Avaliações |
Desenvolvedor | Chris Gallegos |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | http://gallegosaudio.com/Extensions-Privacy-Policy |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Audio\/Video Playback Speed Controller", "short_name": "Playback Controller", "version": "1.1", "description": "A simple interface to control the playback speed of audio and video elements in a webpage.", "browser_action": { "default_title": "Playback Controller", "default_popup": "popup.html", "default_icon": { "16": "icons\/fast_forward_16.png", "32": "icons\/fast_forward_32.png", "64": "icons\/fast_forward_64.png", "128": "icons\/fast_forward_128.png", "256": "icons\/fast_forward_256.png" } }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "activeTab" ], "icons": { "16": "icons\/fast_forward_16.png", "32": "icons\/fast_forward_32.png", "64": "icons\/fast_forward_64.png", "128": "icons\/fast_forward_128.png", "256": "icons\/fast_forward_256.png" } } |