TraktToKodi
Open/Play content with a compatible Kodi add-on from trakt.tv in your browser.
TraktToKodiคืออะไร?
TraktToKodi เป็นส่วนขยายของ Chrome ที่พัฒนาโดย anxdpanic และคุณลักษณะหลักของมันคือ "Open/Play content with a compatible Kodi add-on from trakt.tv in your browser."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TraktToKodi
ดาวน์โหลดไฟล์ส่วนขยาย TraktToKodi ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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"
} | |