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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Send link to Kodi. Supports: Youtube, Twitch, Vimeo, SVT Play, direct urls (including magnet and torrents urls)
확장 프로그램 기본 정보
이름 | Send to Kodi |
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" } } } } |