OctoBrowser
Control OctoPrint from any url!
Apa itu OctoBrowser?
OctoBrowser adalah ekstensi Chrome yang dikembangkan oleh acvigue, dan fitur utamanya adalah "Control OctoPrint from any url!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi OctoBrowser
Unduh file ekstensi OctoBrowser dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | pgoeiddlbkjphphnamnminlbeglpmcpl |
URL Resmi | https://chrome.google.com/webstore/detail/octobrowser/pgoeiddlbkjphphnamnminlbeglpmcpl |
Deskripsi | Control OctoPrint from any url! |
Ukuran File | 82.8 KB |
Jumlah Instalasi | 581 |
Versi Saat Ini | 1.6.5 |
Terakhir Diperbarui | 2016-01-20 |
Tanggal Publikasi | 2016-01-20 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | acvigue |
Tipe Pembayaran | in_app |
Bahasa yang Didukung | 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" } } |