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ファイルをダウンロード
Roku Dev Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |