AutoPi
Pushes YouTube videos to Kodi.
AutoPiとは何ですか?
AutoPiはdevhlによって開発されたChromeの拡張機能で、その主な機能は「Pushes YouTube videos to Kodi.」です。
拡張機能のスクリーンショット
AutoPi拡張機能のCRXファイルをダウンロード
AutoPi拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Pushes YouTube videos to your Raspberry Pi automatically. To use this, just enter your Raspberry Pi's IP address and port (probably 80), check enabled, click save, and then navigate to a YouTube video. It will get pushed to your Pi automatically. This was tested on a Raspberry Pi 4 running LibreElec. v1.0.0 - fix to keep working with a playlist v0.2.0.1 - changed get request to post requests to match changes in the api v0.2.0.0 - added Chrome and XBMC notifications v0.1.0.0 - first release
拡張機能の基本情報
名前 | AutoPi |
ID | jlfjghdgdpbjgnaecdmbkdgmbhbfagmh |
公式URL | https://chromewebstore.google.com/detail/autopi/jlfjghdgdpbjgnaecdmbkdgmbhbfagmh |
説明 | Pushes YouTube videos to Kodi. |
ファイルサイズ | 25.25 KB |
インストール数 | 19 |
現在のバージョン | 1.0.0 |
最終更新日 | 2022-11-09 |
公開日 | 2020-05-24 |
評価 | 1.00/5 合計 1 レビュー |
開発者 | devhl |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://github.com/devhl-labs/Chrome.AutoPi |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AutoPi", "version": "1.0.0", "description": "Pushes YouTube videos to Kodi.", "background": { "scripts": [ "src\/background.js" ] }, "browser_action": { "default_title": "Auto Pi", "default_popup": "src\/popup.html", "default_icon": { "19": "src\/images\/APi19.png" } }, "permissions": [ "http:\/\/*\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "src\/contentscript.js" ], "run_at": "document_start", "all_frames": false } ], "manifest_version": 2, "icons": { "128": "src\/images\/APi128.png", "48": "src\/images\/APi48.png", "16": "src\/images\/APi16.png" } } |