Send to Kodi
Adds a Send to Kodi Link when right clicking links
What is Send to Kodi?
Send to Kodi is a Chrome extension developed by Rikard Wissing, and its main feature is "Adds a Send to Kodi Link when right clicking links".
Extension Screenshots
Download Send to Kodi Extension CRX File
Download Send to Kodi extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Send link to Kodi. Supports: Youtube, Twitch, Vimeo, SVT Play, direct urls (including magnet and torrents urls)
Extension Basic Information
Name | Send to Kodi |
ID | fobjnlgachlcppfalhpnmdllmjnfmfah |
Official URL | https://chromewebstore.google.com/detail/send-to-kodi/fobjnlgachlcppfalhpnmdllmjnfmfah |
Description | Adds a Send to Kodi Link when right clicking links |
File Size | 65.13 KB |
Installation Count | 839 |
Current Version | 0.6 |
Last Updated | 2018-02-25 |
Publish Date | 2018-02-24 |
Rating | 3.20/5 Total 5 Ratings |
Developer | Rikard Wissing |
Payment Type | free |
Extension Website | https://github.com/rikardwissing/webextension-sendtokodi |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Send to Kodi", "description": "Adds a Send to Kodi Link when right clicking links", "version": "0.6", "permissions": [ "contextMenus", "storage" ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "browser_action": { "default_title": "Send to Kodi settings.", "default_icon": "icon-48.png", "default_popup": "popup.html" }, "background": { "persistent": false, "scripts": [ "jquery-3.2.1.min.js", "background.js" ] }, "manifest_version": 2, "applications": { "gecko": { "id": "sendtokodi@rikardwissing" } }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+K", "linux": "Alt+Shift+K", "windows": "Alt+Shift+K", "mac": "Alt+Shift+K" } } } } |