TraktToKodi

Open/Play content with a compatible Kodi add-on from trakt.tv in your browser.

TraktToKodi là gì?

TraktToKodi là một tiện ích mở rộng Chrome được phát triển bởi anxdpanic, và tính năng chính của nó là "Open/Play content with a compatible Kodi add-on from trakt.tv in your browser.".

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

screenshot

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

Tải xuống các tệp mở rộng TraktToKodi 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

                        Open/Play content with a compatible Kodi add-on from trakt.tv in your browser.

- Adds 'Open' and 'Play' to content on trakt.tv
- Up to 4 remote Kodi profiles

Uses Kodi JSON-RPC over web sockets to execute the user provided add-on id with trakt content identifiers.

**Requirements**
- A Kodi add-on that supports this extensions Kodi JSON-RPC requests
- Kodi setting: `Settings -> Services -> Remote Control -> Allow remote control by programs on other systems`

**Compatible Add-ons**
(see Website for links)
- script.trakttokodi.libconn 
- script.trakttokodi.embycon                    

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

Tên TraktToKodi TraktToKodi
ID jongfgkokmlpdekeljpegeldjofbageo
URL Chính Thức https://chrome.google.com/webstore/detail/trakttokodi/jongfgkokmlpdekeljpegeldjofbageo
Mô tả Open/Play content with a compatible Kodi add-on from trakt.tv in your browser.
Kích Thước Tệp 75.33 KB
Số Lần Cài Đặt 213
Phiên Bản Hiện Tại 0.2.0.0
Cập Nhật Lần Cuối 2017-12-10
Ngày Phát Hành 2017-12-10
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển anxdpanic
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/anxdpanic/TraktToKodi-Extension/tree/chrome#trakttokodi-google-chrome
URL Trang Trợ Giúp https://github.com/anxdpanic/TraktToKodi-Extension/tree/chrome#trakttokodi-google-chrome
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TraktToKodi",
    "description": "Open\/Play content with a compatible Kodi add-on from trakt.tv in your browser.",
    "version": "0.2.0.0",
    "default_locale": "en",
    "icons": {
        "128": "\/images\/icon_128.png",
        "48": "\/images\/icon_48.png",
        "16": "\/images\/icon_16.png"
    },
    "browser_action": {
        "default_icon": {
            "38": "\/images\/icon_38.png",
            "19": "\/images\/icon_19.png"
        },
        "default_popup": "\/html\/settings.html"
    },
    "options_ui": {
        "page": "\/html\/settings.html",
        "chrome_style": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.trakt.tv\/*"
            ],
            "css": [
                "\/css\/trakt.css"
            ],
            "js": [
                "\/js\/content_script.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "matches": [
            "*:\/\/*.trakt.tv\/*"
        ],
        "scripts": [
            "\/js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "background",
        "*:\/\/*.trakt.tv\/*",
        "tabs",
        "webNavigation",
        "activeTab",
        "storage"
    ],
    "options_page": "\/html\/settings.html"
}