Podcast Feeds
Quickly view any podcast feeds that are related to the current page.
Podcast Feeds là gì?
Podcast Feeds là một tiện ích mở rộng Chrome được phát triển bởi Christopher Kalafarski, và tính năng chính của nó là "Quickly view any podcast feeds that are related to the current page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Podcast Feeds
Tải xuống các tệp mở rộng Podcast Feeds 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
Podcast Feeds detects podcasts that are mentioned or referenced on webpages, and then provides links to each podcast's RSS feed, iTunes Preview page, and a lightweight viewer that can be used to inspect the feed's contents (including audio). Currently detection is based on the presence of links to iTunes Preview pages. Additional forms of detection will be added in the future. The extension also works when viewing an iTunes Preview page for a podcast. Please be aware that when links are found, this extension will make a request to the iTunes API to get additional details about the podcast. Change log: 0.5.2 – Fixes ordering and supports the new Apple Podcasts domain 0.5.0 – Resolves an incompatibility that was introduced in a recent version of Chrome 0.4.0 – Removes some unnecessarily complex code 0.3.0 – Adds support for experimental link tags 0.2.2 – Removed unnecessary logging; limits the height of the pop-up to improve display stability 0.2.1 – Include a copy-to-clipboard button to copy the feed URL for each podcast listing, an improved preview layout, fixed a bug where a podcast could be listed multiple times, modernized code base, a link to the iTunes Preview page for each listing The source code for this extension is open source and can be found at https://github.com/farski/podcasts-crx
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | hoagpkipelocoimpfaaabjbkilecpgnm |
URL Chính Thức | https://chrome.google.com/webstore/detail/podcast-feeds/hoagpkipelocoimpfaaabjbkilecpgnm |
Mô tả | Quickly view any podcast feeds that are related to the current page. |
Kích Thước Tệp | 121 KB |
Số Lần Cài Đặt | 2,000 |
Phiên Bản Hiện Tại | 0.5.2 |
Cập Nhật Lần Cuối | 2019-06-30 |
Ngày Phát Hành | 2019-06-30 |
Đánh Giá | 3.67/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Christopher Kalafarski |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/icons\/podcast\/springboard\/38.png", "38": "images\/icons\/podcast\/springboard\/76.png" }, "default_popup": "browser_action\/popup.html", "default_title": "Podcast Feeds" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "description": "Quickly view any podcast feeds that are related to the current page.", "icons": { "16": "images\/icons\/podcast\/springboard\/32.png", "48": "images\/icons\/podcast\/springboard\/96.png", "128": "images\/icons\/podcast\/springboard\/256.png", "512": "images\/icons\/podcast\/springboard\/512.png" }, "manifest_version": 2, "name": "Podcast Feeds", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "version": "0.5.2" } |