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
公式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
Eメール [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"
        }
    ]
}