OctoBrowser
Control OctoPrint from any url!
什么是OctoBrowser?
OctoBrowser是由acvigue开发的Chrome扩展程序,该扩展的主要功能是“Control OctoPrint from any url!”。
扩展截图
下载OctoBrowser扩展crx文件
下载OctoBrowser扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
OctoBrowser lets you control your OctoPrint instance from any url in the world. Simply specify the public url to your OctoPrint instance and it's API key to get started! You can change these settings at anytime.
扩展基本信息
名称 | |
ID | pgoeiddlbkjphphnamnminlbeglpmcpl |
官方URL | https://chrome.google.com/webstore/detail/octobrowser/pgoeiddlbkjphphnamnminlbeglpmcpl |
简介 | Control OctoPrint from any url! |
文件大小 | 82.8 KB |
安装次数 | 581 |
当前版本 | 1.6.5 |
更新时间 | 2016-01-20 |
上架时间 | 2016-01-20 |
评分 | 5.00/5 共3次评分 |
开发者 | acvigue |
付费类型 | in_app |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OctoBrowser", "version": "1.6.5", "description": "Control OctoPrint from any url!", "background": { "scripts": [ "background.js" ], "persistant": false }, "manifest_version": 2, "browser_action": { "name": "OctoBrowser", "icons": [ "icon.png" ], "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "jquery-2.0.2.min.js", "background.js", "api.js", "apis.js" ], "css": [ "customStyles.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "icons": { "16": "icon.png", "48": "icon48.png", "128": "icon128.png" } } |