UiPath XAML support in GitHub

Adds support for viewing XAML files in GitHub

What is UiPath XAML support in GitHub?

UiPath XAML support in GitHub is a Chrome extension developed by bogdan.ripa, and its main feature is "Adds support for viewing XAML files in GitHub".

Extension Screenshots

screenshot
screenshot

Download UiPath XAML support in GitHub Extension CRX File

Download UiPath XAML support in GitHub 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

                        When visiting github.com and browsing to a xaml file (built with UiPath Studio), you will get a nice visualization instead of the plain xaml code view.                    

Extension Basic Information

Name UiPath XAML support in GitHub UiPath XAML support in GitHub
ID inkldjmlelpljoelgjdkmdlkdlddefja
Official URL https://chromewebstore.google.com/detail/uipath-xaml-support-in-gi/inkldjmlelpljoelgjdkmdlkdlddefja
Description Adds support for viewing XAML files in GitHub
File Size 13.47 KB
Installation Count 1,583
Current Version 1.1.2
Last Updated 2023-01-17
Publish Date 2022-06-25
Developer bogdan.ripa
Email [email protected]
Payment Type free
Extension Website https://github.com/bogdanripa/github--xaml-viewer
Help Page URL https://github.com/bogdanripa/github--xaml-viewer/issues
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UiPath XAML support in GitHub",
    "version": "1.1.2",
    "description": "Adds support for viewing XAML files in GitHub",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "myStyles.css"
            ],
            "js": [
                "xmlFunctions.js",
                "uia.js",
                "system.js",
                "office.js",
                "stateMachines.js",
                "contentScript.js"
            ]
        }
    ]
}