Send to Kodi
Adds a Send to Kodi Link when right clicking links
什么是Send to Kodi?
Send to Kodi是由Rikard Wissing开发的Chrome扩展程序,该扩展的主要功能是“Adds a Send to Kodi Link when right clicking links”。
扩展截图
下载Send to Kodi扩展crx文件
下载Send to Kodi扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Send link to Kodi.
Supports: Youtube, Twitch, Vimeo, SVT Play, direct urls (including magnet and torrents urls) 扩展基本信息
| 名称 | |
| ID | fobjnlgachlcppfalhpnmdllmjnfmfah |
| 官方URL | https://chromewebstore.google.com/detail/send-to-kodi/fobjnlgachlcppfalhpnmdllmjnfmfah |
| 简介 | Adds a Send to Kodi Link when right clicking links |
| 文件大小 | 65.13 KB |
| 安装次数 | 839 |
| 当前版本 | 0.6 |
| 更新时间 | 2018-02-25 |
| 上架时间 | 2018-02-24 |
| 评分 | 3.20/5 共5次评分 |
| 开发者 | Rikard Wissing |
| 付费类型 | free |
| 扩展官网 | https://github.com/rikardwissing/webextension-sendtokodi |
| 支持的语言 | 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"
}
}
}
} | |