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 |
官方網址 | 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" ] } |