Roku Dev Helper
This extension can help Roku developers to manage their apps easily
What is Roku Dev Helper?
Roku Dev Helper is a Chrome extension developed by http://oxymoron-tech.oxy.co.il, and its main feature is "This extension can help Roku developers to manage their apps easily".
Extension Screenshots
Download Roku Dev Helper Extension CRX File
Download Roku Dev Helper 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
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
Extension Basic Information
Name | |
ID | kfnnahcjfjndjocbnembficegfgbjmfp |
Official URL | https://chrome.google.com/webstore/detail/roku-dev-helper/kfnnahcjfjndjocbnembficegfgbjmfp |
Description | This extension can help Roku developers to manage their apps easily |
File Size | 26.6 KB |
Installation Count | 216 |
Current Version | 1.1 |
Last Updated | 2019-12-09 |
Publish Date | 2019-12-09 |
Developer | http://oxymoron-tech.oxy.co.il |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |