AutoPi

Pushes YouTube videos to Kodi.

AutoPi란 무엇입니까?

AutoPi은(는) devhl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pushes YouTube videos to Kodi."입니다.

확장 프로그램 스크린샷

screenshot

AutoPi 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
이메일 [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"
    }
}