Codeanywhere IDE

Helper for launching Codeanywhere.

What is Codeanywhere IDE?

Codeanywhere IDE is a Chrome extension developed by Matt Rudge, and its main feature is "Helper for launching Codeanywhere.".

Extension Screenshots

screenshot

Download Codeanywhere IDE Extension CRX File

Download Codeanywhere IDE 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

                        Unofficial helper extension for launching a Codeanywhere workspace from a GitHub repository                    

Extension Basic Information

Name Codeanywhere IDE Codeanywhere IDE
ID khibngadbedomfojmmblgdphangeninf
Official URL https://chromewebstore.google.com/detail/codeanywhere-ide/khibngadbedomfojmmblgdphangeninf
Description Helper for launching Codeanywhere.
File Size 20.51 KB
Installation Count 354
Current Version 1.0.0
Last Updated 2023-03-31
Publish Date 2023-03-31
Rating 5.00/5 Total 1 Ratings
Developer Matt Rudge
Email [email protected]
Payment Type free
Extension Website https://lechien73.githob.io/cae
Help Page URL https://lechien73.githob.io/cae
Privacy Policy Page URL https://mattrudge.net/privacy.html
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Codeanywhere IDE",
    "description": "Helper for launching Codeanywhere.",
    "version": "1.0.0",
    "action": {
        "default_title": "Codeanywhere IDE Helper"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*",
                "*:\/\/*.github.com\/*\/*"
            ],
            "js": [
                "js\/cae_content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}