RPi-youtube

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

RPi-youtubeคืออะไร?

RPi-youtube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kusti8 และคุณลักษณะหลักของมันคือ "This extension runs youtube videos in chromium through omxplayer allowing a much smoother viewing"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RPi-youtube

ดาวน์โหลดไฟล์ส่วนขยาย RPi-youtube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}