OctoBrowser

Control OctoPrint from any url!

Cos'è OctoBrowser?

OctoBrowser è un'estensione di Chrome sviluppata da acvigue, e la sua funzione principale è "Control OctoPrint from any url!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione OctoBrowser

Scarica i file di estensione OctoBrowser in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome OctoBrowser OctoBrowser
ID pgoeiddlbkjphphnamnminlbeglpmcpl
URL Ufficiale https://chrome.google.com/webstore/detail/octobrowser/pgoeiddlbkjphphnamnminlbeglpmcpl
Descrizione Control OctoPrint from any url!
Dimensione del File 82.8 KB
Conteggio Installazioni 581
Versione Corrente 1.6.5
Ultimo Aggiornamento 2016-01-20
Data di Pubblicazione 2016-01-20
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore acvigue
Tipo di Pagamento in_app
Lingue Supportate 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"
    }
}