Open in StackBlitz

Adds an open in StackBlitz button to Github Repos

What is Open in StackBlitz?

Open in StackBlitz is a Chrome extension developed by Baljeet Singh, and its main feature is "Adds an open in StackBlitz button to Github Repos".

Extension Screenshots

screenshot

Download Open in StackBlitz Extension CRX File

Download Open in StackBlitz 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

                        This extension adds a button to all github repos that will open that repo in StackBlitz in a new window                    

Extension Basic Information

Name Open in StackBlitz Open in StackBlitz
ID biocgmgmpiglbdffjdbciegmpfnmfgmb
Official URL https://chromewebstore.google.com/detail/open-in-stackblitz/biocgmgmpiglbdffjdbciegmpfnmfgmb
Description Adds an open in StackBlitz button to Github Repos
File Size 21.46 KB
Installation Count 213
Current Version 1.0.1
Last Updated 2018-10-20
Publish Date 2018-10-20
Developer Baljeet Singh
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open in StackBlitz",
    "short_name": "StackBlitz",
    "version": "1.0.1",
    "description": "Adds an open in StackBlitz button to Github Repos",
    "homepage_url": "https:\/\/stackblitz.io",
    "icons": {
        "16": ".\/assets\/icon16.png",
        "48": ".\/assets\/icon48.png",
        "128": ".\/assets\/icon128.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ]
}