Play to Kodi

Play, queue and remote control your favourite online media on Kodi.

Play to Kodi là gì?

Play to Kodi là một tiện ích mở rộng Chrome được phát triển bởi khloke, và tính năng chính của nó là "Play, queue and remote control your favourite online media on Kodi.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Play to Kodi

Tải xuống các tệp mở rộng Play to Kodi dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        A Google Chrome Extension for playing online content on Kodi. Supported sites include YouTube, Twitch.tv,  AnimeLab and many more.

Requirements:
-Kodi Eden (v11) or later
-The relevant plugin installed on Kodi
-YouTube plugin must be version 4.4.4 or later

How to use:
- "Play now" button sends the currently playing video of your active tab to Kodi. If there are videos currently in a queue, it would be cleared and the current video would be played.
- "+Queue (X)" button puts the video of your current tab to the end of the playlist on Kodi. A number in parenthesis shows the number of items currently in the queue.
- "+Favourite" button keeps the video of your current tab in your favourite list for easy access.
- Drag and drop your favourites to rearrange them.
- With the extension window open, you can use some of your keyboard keys to remotely control Kodi. These keys are: Arrow keys, Backspace, Enter, "I" and "C".
- Right click on YouTube links to play or queue.

Permissions:
- Your data on all websites: Needed so that the extension could send JSON requests to any URL that you might put in the settings.
- Your tabs and browsing activity: Used only for getting the URL of the current tab so that we could use it to obtain the video id for sending to Kodi.

Setup:
- On Kodi, go under System > Settings > Services > Webserver
- Enable "Allow control of Kodi via HTTP, leave the port as default or set it to something else (if you know what you're doing). Write down the port number.
- Username and password are optional
- Right click on the 'Play to Kodi' icon and select 'Options'
- Put in the IP address or hostname of your Kodi box and fill in the port number with the port number you wrote down earlier. Fill in the username and password if you entered one into Kodi.
- Visit YouTube, watch some videos and click on the 'Play to Kodi' icon to play them on Kodi.

Alternatively, you could also visit the source code on 
https://github.com/khloke/play-to-xbmc-chrome 
to submit issue tickets.

Credits:
Icon was generously provided for free by IconDock.com :)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Play to Kodi Play to Kodi
ID fncjhcjfnnooidlkijollckpakkebden
URL Chính Thức https://chromewebstore.google.com/detail/play-to-kodi/fncjhcjfnnooidlkijollckpakkebden
Mô tả Play, queue and remote control your favourite online media on Kodi.
Kích Thước Tệp 281 KB
Số Lần Cài Đặt 36,515
Phiên Bản Hiện Tại 1.9.2
Cập Nhật Lần Cuối 2019-04-30
Ngày Phát Hành 2019-04-29
Đánh Giá 4.44/5 Tổng số 528 Đánh Giá
Nhà Phát Triển khloke
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/khloke/play-to-xbmc-chrome/wiki/Getting-Started
URL Trang Trợ Giúp https://github.com/khloke/play-to-xbmc-chrome/wiki/Frequently-Asked-Questions
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.9.2",
    "name": "Play to Kodi",
    "description": "Play, queue and remote control your favourite online media on Kodi.",
    "applications": {
        "gecko": {
            "id": "{ba707b6e-571d-47c9-a31d-7b94807d6ee2}"
        }
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "*:\/\/www.googleapis.com\/*",
        "http:\/\/*\/*",
        "contextMenus"
    ],
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "remote.html"
    },
    "icons": {
        "16": "images\/icon-16.png",
        "24": "images\/icon.png",
        "128": "images\/tv.png"
    },
    "background": {
        "scripts": [
            "js\/jquery-2.1.4.min.js",
            "js\/modules.js",
            "js\/shared.js",
            "js\/background_scripts\/background.js",
            "js\/xbmc-helper.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery-2.1.4.min.js",
                "js\/modules.js",
                "js\/content_scripts\/context-menu-content-scripts.js",
                "js\/content_scripts\/embedded-video-content-scripts.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/www.liveleak.com\/view*"
            ],
            "js": [
                "js\/content_scripts\/liveleak-content-scripts.js",
                "js\/jquery-2.1.4.min.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "js\/content_scripts\/facebook-content-scripts.js",
                "js\/jquery-2.1.4.min.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/jquery-2.1.4.min.js",
                "js\/shared.js",
                "js\/content_scripts\/youtube-content-scripts.js"
            ]
        },
        {
            "matches": [
                "*:\/\/soundcloud.com\/*"
            ],
            "js": [
                "js\/jquery-2.1.4.min.js",
                "js\/shared.js",
                "js\/content_scripts\/soundcloud-content-scripts.js"
            ]
        },
        {
            "matches": [
                "*:\/\/streamcloud.eu\/*"
            ],
            "js": [
                "js\/jquery-2.1.4.min.js",
                "js\/shared.js",
                "js\/content_scripts\/streamcloud-content-scripts.js"
            ]
        },
        {
            "matches": [
                "*:\/\/mycloudplayers.com\/*"
            ],
            "js": [
                "js\/shared.js",
                "js\/content_scripts\/soundcloud-content-scripts.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.khanacademy.org\/*"
            ],
            "js": [
                "js\/jquery-2.1.4.min.js",
                "js\/shared.js",
                "js\/content_scripts\/khanacademy-content-scripts.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.hulu.com\/watch\/*"
            ],
            "js": [
                "js\/jquery-2.1.4.min.js",
                "js\/shared.js",
                "js\/content_scripts\/hulu-content-scripts.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.animelab.com\/player\/*"
            ],
            "js": [
                "js\/jquery-2.1.4.min.js",
                "js\/content_scripts\/animelab-content-scripts.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.lynda.com\/*"
            ],
            "js": [
                "js\/jquery-2.1.4.min.js",
                "js\/content_scripts\/lyndacom-content-scripts.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.urgantshow.ru\/page\/*"
            ],
            "js": [
                "js\/content_scripts\/urgantshow-content-scripts.js",
                "js\/jquery-2.1.4.min.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.kino-live.org\/*"
            ],
            "js": [
                "js\/content_scripts\/kinolive-content-scripts.js",
                "js\/jquery-2.1.4.min.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.vessel.com\/*"
            ],
            "js": [
                "js\/content_scripts\/vessel-content-scripts.js",
                "js\/jquery-2.1.4.min.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.cda.pl\/*"
            ],
            "js": [
                "js\/jquery-2.1.4.min.js",
                "js\/jquery-ui-1.11.4.min.js",
                "js\/content_scripts\/cda-content-scripts.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.seasonvar.ru\/*"
            ],
            "js": [
                "js\/jquery-2.1.4.min.js",
                "js\/content_scripts\/seasonvar-content-scripts.js"
            ]
        },
        {
            "matches": [
                "*:\/\/solarmoviez.to\/*"
            ],
            "js": [
                "js\/jquery-2.1.4.min.js",
                "js\/content_scripts\/solarmoviez-content-scripts.js"
            ]
        },
        {
            "matches": [
                "*:\/\/vivo.sx\/*"
            ],
            "js": [
                "js\/jquery-2.1.4.min.js",
                "js\/content_scripts\/vivo-content-scripts.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*"
    ]
}