OctoBrowser
Control OctoPrint from any url!
Что такое OctoBrowser?
OctoBrowser - это расширение Chrome, разработанное acvigue, и его основная функция - "Control OctoPrint from any url!".
Снимки экрана расширения
Скачать файл CRX расширения OctoBrowser
Скачайте файлы расширений 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" } } |