OctoBrowser

Control OctoPrint from any url!

What is OctoBrowser?

OctoBrowser is a Chrome extension developed by acvigue, and its main feature is "Control OctoPrint from any url!".

Extension Screenshots

screenshot

Download OctoBrowser Extension CRX File

Download OctoBrowser extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name OctoBrowser OctoBrowser
ID pgoeiddlbkjphphnamnminlbeglpmcpl
Official URL https://chrome.google.com/webstore/detail/octobrowser/pgoeiddlbkjphphnamnminlbeglpmcpl
Description Control OctoPrint from any url!
File Size 82.8 KB
Installation Count 581
Current Version 1.6.5
Last Updated 2016-01-20
Publish Date 2016-01-20
Rating 5.00/5 Total 3 Ratings
Developer acvigue
Payment Type in_app
Supported Languages 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"
    }
}