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文件

下載UoM Podcast: Play Button Remover擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    ]
}