CastBuddy
This extension finds videos on the web sites you are browsing and allows you to play them on your Chromecast device.
CastBuddyคืออะไร?
CastBuddy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย b4t และคุณลักษณะหลักของมันคือ "This extension finds videos on the web sites you are browsing and allows you to play them on your Chromecast device."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CastBuddy
ดาวน์โหลดไฟล์ส่วนขยาย CastBuddy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Stream web videos directly on your Chromecast from websites which have not added Chromecast support yet. This extension finds videos on the web sites you are browsing and allows you to play them on your Chromecast device. When it finds Chromecast comptible videos ( .webm, .mp4, .mkv etc), count of videos is shown over extension's menubar icon, which you can click to Select a video and extension will send it to your Chromecast device. Once a casting session is established, you can control video playback from Extension's popup page. Instructions for using CastBuddy: https://castbuddy-extension.bitbucket.io/help/index.html Features: * Find compatible videos and allows you to stream directly on your Chromecast * Control playback ( Play/Pause/Seek) from extension's menu * No need to keep your computer running once streaming starts on Chromecast * Allows you to manually enter a URL for Video to play on your Chromecast * Support for adding videos to Queue v1.0.8 - Experimenting with external website based player v1.0.6 Launch player in a new window to workaround issue with latest chrome update which doesn't allow starting chromecast sessions from popup. v1.0.5 - Revert changes made in 1.0.4 as the didn't work properly and also broke functionality that was working with older chrome version v1.0.4 - Attempt to fix issue with latest chrome update
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CastBuddy |
ID | ghagedffjalchgcgdgfindabkpnmalel |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/castbuddy/ghagedffjalchgcgdgfindabkpnmalel |
คำอธิบาย | This extension finds videos on the web sites you are browsing and allows you to play them on your Chromecast device. |
ขนาดไฟล์ | 253 KB |
จำนวนการติดตั้ง | 84,727 |
เวอร์ชันปัจจุบัน | 1.1.0 |
อัปเดตครั้งล่าสุด | 2021-12-31 |
วันที่เผยแพร่ | 2019-02-09 |
คะแนน | 3.63/5 รวมทั้งหมด 600 คะแนน |
ผู้พัฒนา | b4t |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://castbuddy.app |
URL หน้าช่วยเหลือ | https://castbuddy-extension.bitbucket.io/help/index.html |
URL หน้านโยบายความเป็นส่วนตัว | https://castbuddy-extension.bitbucket.io/privacy-policy.html |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CastBuddy", "description": "This extension finds videos on the web sites you are browsing and allows you to play them on your Chromecast device.", "version": "1.1.0", "manifest_version": 2, "icons": { "16": "icons\/castbuddyv2-logo_16.png", "48": "icons\/castbuddyv2-logo_48.png", "96": "icons\/castbuddyv2-logo_96.png", "128": "icons\/castbuddyv2-logo_128.png" }, "browser_action": { "default_title": "Castbuddy" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "http:\/\/*.castbuddy.app:*\/", "https:\/\/*.castbuddy.app:*\/", "http:\/\/*.castbuddy.app:*\/index.html", "https:\/\/*.castbuddy.app:*\/index.html", "https:\/\/*.doubleclick.net\/*", "https:\/\/*.googlesyndication.com\/*", "https:\/\/*.google.com\/*", "https:\/\/*.castbuddy.pages.dev\/", "https:\/\/*.castbuddy.pages.dev\/", "https:\/\/*.castbuddy.pages.dev\/index.html", "https:\/\/*.castbuddy.pages.dev\/index.html" ], "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_end" } ], "permissions": [ "storage", "contextMenus" ], "optional_permissions": [ "tabs", "https:\/\/*.castbuddy.app:*\/*", "http:\/\/*.castbuddy.app:*\/*", "https:\/\/dev.castbuddy.app:8080\/*", "https:\/\/*.castbuddy.pages.dev\/*" ], "externally_connectable": { "matches": [ "http:\/\/*.castbuddy.site:*\/*", "https:\/\/*.castbuddy.app:*\/*", "http:\/\/*.castbuddy.app:*\/*", "https:\/\/localhost:8080\/", "https:\/\/*.castbuddy.pages.dev\/*" ] }, "content_security_policy": "script-src 'self' 'unsafe-eval' chrome-extension:\/\/www.gstatic.com chrome-extension:\/\/ghagedffjalchgcgdgfindabkpnmalel chrome-extension:\/\/pkedcjkdefgpdelpbcmbmeomcjbeemfm chrome-extension:\/\/enhhojjnijigcajfphajepfemndkmdlo chrome-extension-resource: https:\/\/www.gstatic.com http:\/\/www.gstatic.com;; object-src 'self' https:\/\/ssl.google-analytics.com;" } |