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 là gì?

UoM Podcast: Play Button Remover là một tiện ích mở rộng Chrome được phát triển bởi Amir Maula, và tính năng chính của nó là "Removes the play button on the podcast player when it's paused so you're able to take screenshots for notes with zero distractions.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng UoM Podcast: Play Button Remover

Tải xuống các tệp mở rộng UoM Podcast: Play Button Remover dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên UoM Podcast: Play Button Remover UoM Podcast: Play Button Remover
ID jpehogmaddbcdplejmhoghighfkfnjgo
URL Chính Thức https://chromewebstore.google.com/detail/uom-podcast-play-button-r/jpehogmaddbcdplejmhoghighfkfnjgo
Mô tả Removes the play button on the podcast player when it's paused so you're able to take screenshots for notes with zero distractions.
Kích Thước Tệp 23.46 KB
Số Lần Cài Đặt 62
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2021-02-16
Ngày Phát Hành 2020-10-22
Đánh Giá 5.00/5 Tổng số 12 Đánh Giá
Nhà Phát Triển Amir Maula
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/amirmaula/uom_podcast
URL Trang Trợ Giúp https://github.com/amirmaula/uom_podcast
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}