AutoPi
Pushes YouTube videos to Kodi.
AutoPi क्या है?
AutoPi devhl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Pushes YouTube videos to Kodi."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AutoPi एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |