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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes the play button on the podcast player when it's paused so you're able to take screenshots for notes with zero distractions."입니다.

확장 프로그램 스크린샷

screenshot

UoM Podcast: Play Button Remover 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
        }
    ]
}