Roku Dev Helper
This extension can help Roku developers to manage their apps easily
Roku Dev Helper란 무엇입니까?
Roku Dev Helper은(는) http://oxymoron-tech.oxy.co.il에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension can help Roku developers to manage their apps easily"입니다.
확장 프로그램 스크린샷
Roku Dev Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Extension for Roku developers and Roku channels managers that provide few useful features for channels list page. You can see additional data of channels, filter them and sort them. Ver.1.1 - bug fixes - additional data displayed: version number, submit/updated dates etc - sort by Modified date added
확장 프로그램 기본 정보
이름 | |
ID | kfnnahcjfjndjocbnembficegfgbjmfp |
공식 URL | https://chrome.google.com/webstore/detail/roku-dev-helper/kfnnahcjfjndjocbnembficegfgbjmfp |
설명 | This extension can help Roku developers to manage their apps easily |
파일 크기 | 26.6 KB |
설치 횟수 | 216 |
현재 버전 | 1.1 |
최근 업데이트 | 2019-12-09 |
출시 날짜 | 2019-12-09 |
개발자 | http://oxymoron-tech.oxy.co.il |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Oxymoron Technique", "name": "Roku Dev Helper", "short_name": "Roku Dev", "version": "1.1", "description": "This extension can help Roku developers to manage their apps easily", "icons": { "16": "icon_S_16.png", "32": "icon_S_32.png", "96": "icon_S_96.png", "128": "icon_s_128.png" }, "background": { "scripts": [ "bg.js" ], "persistent": false }, "page_action": { "default_icon": "icon_s_128.png", "default_title": "Roku Dev Helper", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/developer.roku.com\/developer-channels\/channels" ], "run_at": "document_start", "js": [ "Utils.js" ] }, { "matches": [ "https:\/\/developer.roku.com\/developer-channels\/channels" ], "run_at": "document_start", "js": [ "AjaxLogger.js" ] }, { "matches": [ "https:\/\/developer.roku.com\/developer-channels\/channels" ], "run_at": "document_start", "js": [ "content.js" ], "css": [ "content.css" ] } ], "permissions": [ "activeTab", "declarativeContent", "storage" ] } |