UoM Podcast: Play Button Remover

Removes the play button on the podcast player when it's paused so you're able to take screenshots for notes with zero distractions.

O que é UoM Podcast: Play Button Remover?

UoM Podcast: Play Button Remover é uma extensão do Chrome desenvolvida por Amir Maula, e sua principal característica é "Removes the play button on the podcast player when it's paused so you're able to take screenshots for notes with zero distractions.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão UoM Podcast: Play Button Remover

Baixe arquivos de extensão UoM Podcast: Play Button Remover 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

                        Can't take notes from your podcast when you pause it because of the massive pause button in the middle of the screen? This extension solves that problem by removing it for you automatically.

This only works for the University of Manchester Podcast Video system under this link: https://video.manchester.ac.uk/*

Changelog
1.0.4 - removed some debug information that was previously displayed in the stable public release
1.0.3 - added blackboard title bar removal support for embedded podcast videos reduced unnecessary polls for an element after the play button is removed
1.0.2 - updated code to remove the new dimmed play button
1.0.1 - removed unnecessary lines of code
1.0.0 - initial release

Open Source; available on GitHub linked below
https://github.com/amirmaula/uom_podcast                    

Informações Básicas da Extensão

Nome UoM Podcast: Play Button Remover UoM Podcast: Play Button Remover
ID jpehogmaddbcdplejmhoghighfkfnjgo
URL Oficial https://chromewebstore.google.com/detail/uom-podcast-play-button-r/jpehogmaddbcdplejmhoghighfkfnjgo
Descrição Removes the play button on the podcast player when it's paused so you're able to take screenshots for notes with zero distractions.
Tamanho do Arquivo 23.46 KB
Contagem de Instalações 62
Versão Atual 1.0.4
Última Atualização 2021-02-16
Data de Publicação 2020-10-22
Classificação 5.00/5 Total de 12 Avaliações
Desenvolvedor Amir Maula
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/amirmaula/uom_podcast
URL da Página de Ajuda https://github.com/amirmaula/uom_podcast
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UoM Podcast: Play Button Remover",
    "description": "Removes the play button on the podcast player when it's paused so you're able to take screenshots for notes with zero distractions.",
    "version": "1.0.4",
    "icons": {
        "128": ".\/artwork\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/video.manchester.ac.uk\/*",
                "https:\/\/online.manchester.ac.uk\/webapps\/blackboard\/content\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ]
}