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 |
官方網址 | 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 |
電子郵箱 | [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" } } |