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.
Qu'est-ce que UoM Podcast: Play Button Remover ?
UoM Podcast: Play Button Remover est une extension Chrome développée par Amir Maula, et sa fonction principale est "Removes the play button on the podcast player when it's paused so you're able to take screenshots for notes with zero distractions.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension UoM Podcast: Play Button Remover
Téléchargez les fichiers d'extension UoM Podcast: Play Button Remover au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | UoM Podcast: Play Button Remover |
ID | jpehogmaddbcdplejmhoghighfkfnjgo |
URL Officiel | https://chromewebstore.google.com/detail/uom-podcast-play-button-r/jpehogmaddbcdplejmhoghighfkfnjgo |
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. |
Taille du Fichier | 23.46 KB |
Nombre d'Installations | 62 |
Version Actuelle | 1.0.4 |
Dernière Mise à Jour | 2021-02-16 |
Date de Publication | 2020-10-22 |
Évaluation | 5.00/5 Total 12 Évaluations |
Développeur | Amir Maula |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/amirmaula/uom_podcast |
URL de la Page d'Aide | https://github.com/amirmaula/uom_podcast |
Langues Prises en Charge | 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" } ] } |