Codeanywhere IDE

Helper for launching Codeanywhere.

什么是Codeanywhere IDE?

Codeanywhere IDE是由Matt Rudge开发的Chrome扩展程序,该扩展的主要功能是“Helper for launching Codeanywhere.”。

扩展截图

screenshot

下载Codeanywhere IDE扩展crx文件

下载Codeanywhere IDE扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Codeanywhere IDE Codeanywhere IDE
ID khibngadbedomfojmmblgdphangeninf
官方URL https://chromewebstore.google.com/detail/codeanywhere-ide/khibngadbedomfojmmblgdphangeninf
简介 Helper for launching Codeanywhere.
文件大小 20.51 KB
安装次数 354
当前版本 1.0.0
更新时间 2023-03-31
上架时间 2023-03-31
评分 5.00/5 共1次评分
开发者 Matt Rudge
电子邮箱 [email protected]
付费类型 free
扩展官网 https://lechien73.githob.io/cae
帮助页面URL https://lechien73.githob.io/cae
隐私政策页面URL https://mattrudge.net/privacy.html
支持的语言 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"
    }
}