DIY chrome extension

I just found this forum and thought I would share something I’ve done.

I use chrome extensions a lot and I have made one that I’m using for Astroprint following these instructions.

I used the following code:

{
    "manifest_version": 2,
    "name": "Astroprint",
    "description": "3d printing made easy",
    "version": "1.0",
    "icons": {
        "128": "ap_logo_white.png"
    },
    "app": {
        "urls": [
            "http://astroprint.com/"
        ],
        "launch": {
            "web_url": "http://astroprint.com/"
        }
    },
    "permissions": [
        "unlimitedStorage",
        "notifications"
    ]
}

And this image I borrowed/modified from the Astroprint home page.

Astroprint Logo

I’m loving this software and can’t wait for further development.

Tom

1 Like

This is awesome! Thanks for sharing. I’m going to try it myself

1 Like