TraktToKodi

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

TraktToKodi란 무엇입니까?

TraktToKodi은(는) anxdpanic에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open/Play content with a compatible Kodi add-on from trakt.tv in your browser."입니다.

확장 프로그램 스크린샷

screenshot

TraktToKodi 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 TraktToKodi TraktToKodi
ID jongfgkokmlpdekeljpegeldjofbageo
공식 URL https://chrome.google.com/webstore/detail/trakttokodi/jongfgkokmlpdekeljpegeldjofbageo
설명 Open/Play content with a compatible Kodi add-on from trakt.tv in your browser.
파일 크기 75.33 KB
설치 횟수 213
현재 버전 0.2.0.0
최근 업데이트 2017-12-10
출시 날짜 2017-12-10
평점 5.00/5 총 3 개의 평점
개발자 anxdpanic
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/anxdpanic/TraktToKodi-Extension/tree/chrome#trakttokodi-google-chrome
도움말 페이지 URL https://github.com/anxdpanic/TraktToKodi-Extension/tree/chrome#trakttokodi-google-chrome
지원되는 언어 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"
}