TraktToKodi
Open/Play content with a compatible Kodi add-on from trakt.tv in your browser.
Qu'est-ce que TraktToKodi ?
TraktToKodi est une extension Chrome développée par anxdpanic, et sa fonction principale est "Open/Play content with a compatible Kodi add-on from trakt.tv in your browser.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TraktToKodi
Téléchargez les fichiers d'extension TraktToKodi au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | jongfgkokmlpdekeljpegeldjofbageo |
URL Officiel | https://chrome.google.com/webstore/detail/trakttokodi/jongfgkokmlpdekeljpegeldjofbageo |
Description | Open/Play content with a compatible Kodi add-on from trakt.tv in your browser. |
Taille du Fichier | 75.33 KB |
Nombre d'Installations | 213 |
Version Actuelle | 0.2.0.0 |
Dernière Mise à Jour | 2017-12-10 |
Date de Publication | 2017-12-10 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | anxdpanic |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/anxdpanic/TraktToKodi-Extension/tree/chrome#trakttokodi-google-chrome |
URL de la Page d'Aide | https://github.com/anxdpanic/TraktToKodi-Extension/tree/chrome#trakttokodi-google-chrome |
Langues Prises en Charge | 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" } |