RPi-youtube

This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing

RPi-youtube क्या है?

RPi-youtube kusti8 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में RPi-youtube एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This is a small script written to include a quick button to play any youtube video locally in omxplayer, allowing much smoother playback! It uses youtube-dl and displays a prompt each time a youtube video is opened. Pressing OK will show the video locally in less than 10 seconds. You must have Chromium installed (https://www.raspberrypi.org/forums/viewtopic.php?t=121195) and the host script installed (https://github.com/kusti8/RPi-chromium). Any questions or issues should be reported on the Github page, and I'm always open to new ideas!                    

एक्सटेंशन की मूल जानकारी

नाम RPi-youtube RPi-youtube
ID laacchpjldmpbhkcjfmfcjijaekhhlgn
आधिकारिक URL https://chromewebstore.google.com/detail/rpi-youtube/laacchpjldmpbhkcjfmfcjijaekhhlgn
विवरण This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing
फ़ाइल का आकार 37.39 KB
स्थापना संख्या 1,347
वर्तमान संस्करण 0.3
अंतिम अपडेट 2016-07-11
प्रकाशन तिथि 2016-07-11
रेटिंग 3.91/5 कुल 11 रेटिंग्स
डेवलपर kusti8
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://kusti8.github.io/RPi-chromium/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RPi-youtube",
    "description": "This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing",
    "version": "0.3",
    "browser_action": {
        "default_icon": "icon_38.png",
        "default_title": "Extract video!"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "nativeMessaging",
        "http:\/\/*.youtube.com\/*",
        "https:\/\/*.youtube.com\/*"
    ],
    "icons": {
        "48": "icon_48.png",
        "128": "icon_128.png"
    }
}