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.

Co to jest UoM Podcast: Play Button Remover?

UoM Podcast: Play Button Remover to rozszerzenie Chrome opracowane przez Amir Maula, a jego główną funkcją jest „Removes the play button on the podcast player when it's paused so you're able to take screenshots for notes with zero distractions.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia UoM Podcast: Play Button Remover

Pobierz pliki rozszerzeń UoM Podcast: Play Button Remover w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa UoM Podcast: Play Button Remover UoM Podcast: Play Button Remover
ID jpehogmaddbcdplejmhoghighfkfnjgo
Oficjalny URL https://chromewebstore.google.com/detail/uom-podcast-play-button-r/jpehogmaddbcdplejmhoghighfkfnjgo
Opis Removes the play button on the podcast player when it's paused so you're able to take screenshots for notes with zero distractions.
Rozmiar pliku 23.46 KB
Liczba instalacji 62
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2021-02-16
Data Publikacji 2020-10-22
Ocena 5.00/5 Łącznie 12 Oceny
Deweloper Amir Maula
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/amirmaula/uom_podcast
Adres URL Strony Pomocy https://github.com/amirmaula/uom_podcast
Obsługiwane Języki 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"
        }
    ]
}