podStation Podcast Player

A free/libre and open-source (FLOSS) podcast aggregator for Chrome

podStation Podcast Playerคืออะไร?

podStation Podcast Player เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://podstation.github.io และคุณลักษณะหลักของมันคือ "A free/libre and open-source (FLOSS) podcast aggregator for Chrome"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย podStation Podcast Player

ดาวน์โหลดไฟล์ส่วนขยาย podStation Podcast Player ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        podStation is a simple RSS podcast aggregator (or should I say a podcatcher?).

Just add your feeds in the main page or use the search tool and be happy.

Features:
* Global media control support
* Fully functional audio player, it plays in background and offers control over the playback rate (speed), both faster and slower.
* Continuous play, go directly to the next episode when the current one ends.
* Playlist
* Podcast search (using Digital Podcast, iTunes and Podcastindex.org)
* Import your feeds from OPML files
* Detects feeds in pages you visit (the icon will change when a feed is found)
* Synchronize your data using your google account and use it in any Chrome instance, like at home and work (it syncs feed list, episode progress, player options and playlist)
* Integration with the Screen Shader extension (https://chrome.google.com/webstore/detail/screen-shader/fmlboobidmkelggdainpknloccojpppi)

Note on permissions:
* "Read and modify all your data on all websites you visit" - That is necessary for us to download the RSS feeds and detect feeds in websites. We do not read YOUR data from any web site, nor do we modify it.

This is a work in progress, if you find issues or have feature requests, please let us know through the About page of the extension or the report bug function.

iTunes is a trademark of Apple Inc., registered in the U.S. and other countries.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ podStation Podcast Player podStation Podcast Player
ID bpcagekijmfcocgjlnnhpdogbplajjfn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/podstation-podcast-player/bpcagekijmfcocgjlnnhpdogbplajjfn
คำอธิบาย A free/libre and open-source (FLOSS) podcast aggregator for Chrome
ขนาดไฟล์ 1.08 MB
จำนวนการติดตั้ง 43,161
เวอร์ชันปัจจุบัน 1.47.6
อัปเดตครั้งล่าสุด 2024-02-19
วันที่เผยแพร่ 2020-04-04
คะแนน 4.68/5 รวมทั้งหมด 403 คะแนน
ผู้พัฒนา https://podstation.github.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://podstation.github.io/
URL หน้าช่วยเหลือ https://github.com/podStation/podStation#support
URL หน้านโยบายความเป็นส่วนตัว https://github.com/podStation/podStation/blob/master/docs/privacy-policy.md
ภาษาที่รองรับ en,nl,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "podStation Podcast Player",
    "short_name": "podStation",
    "author": "Guilherme Dellagustin",
    "description": "A free\/libre and open-source (FLOSS) podcast aggregator for Chrome",
    "default_locale": "en",
    "icons": {
        "8": "images\/rss-alt.png",
        "16": "images\/rss-alt-2x.png",
        "24": "images\/rss-alt-3x.png",
        "32": "images\/rss-alt-4x.png",
        "48": "images\/rss-alt-6x.png",
        "64": "images\/rss-alt-8x.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "alarms",
        "notifications",
        "contextMenus",
        "idle",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "browser_action": {
        "default_title": "podStation"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "feedFinder.js"
            ]
        }
    ],
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "manifest_version": 2,
    "options_page": "podstation.html#!\/Options",
    "commands": {
        "play_pause": {
            "description": "Play\/Pause podcast"
        },
        "seek_backward": {
            "description": "Seek backward"
        },
        "seek_forward": {
            "description": "Seek forward"
        },
        "next_episode": {
            "description": "Next episode"
        },
        "previous_episode": {
            "description": "Previous episode"
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "externally_connectable": {
        "matches": [
            "*:\/\/podstation.github.io\/*",
            "*:\/\/localhost\/*"
        ]
    },
    "version": "1.47.6"
}