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.
UoM Podcast: Play Button Remover क्या है?
UoM Podcast: Play Button Remover Amir Maula द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes the play button on the podcast player when it's paused so you're able to take screenshots for notes with zero distractions."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में UoM Podcast: Play Button Remover एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | UoM Podcast: Play Button Remover |
ID | jpehogmaddbcdplejmhoghighfkfnjgo |
आधिकारिक URL | https://chromewebstore.google.com/detail/uom-podcast-play-button-r/jpehogmaddbcdplejmhoghighfkfnjgo |
विवरण | Removes the play button on the podcast player when it's paused so you're able to take screenshots for notes with zero distractions. |
फ़ाइल का आकार | 23.46 KB |
स्थापना संख्या | 62 |
वर्तमान संस्करण | 1.0.4 |
अंतिम अपडेट | 2021-02-16 |
प्रकाशन तिथि | 2020-10-22 |
रेटिंग | 5.00/5 कुल 12 रेटिंग्स |
डेवलपर | Amir Maula |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/amirmaula/uom_podcast |
सहायता पृष्ठ URL | https://github.com/amirmaula/uom_podcast |
समर्थित भाषाएँ | 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" } ] } |