Anypoint Platform Chrome Extension

Anypoint Platform Chrome Extension

什么是Anypoint Platform Chrome Extension?

Anypoint Platform Chrome Extension是由https://yucelmoran.com开发的Chrome扩展程序,该扩展的主要功能是“Anypoint Platform Chrome Extension”。

扩展截图

screenshot
screenshot
screenshot

下载Anypoint Platform Chrome Extension扩展crx文件

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

扩展使用说明

                        Anypoint Platform™ is a complete solution for API-led connectivity that helps companies build application networks of apps, data, and devices, both on-premises and in the cloud.

This Extension is meant to help anyone with an access to the platform to reach different modules with less clicks.

With the extension you can:

- Get the access token to use it to use it to consume the Anypoint Platform API using any REST client like POSTMAN
- Download a CSV file with all your deployed applications
- See the total deployed applications in your instance
- See the Anypoint platform status updates in realtime (https://status.mulesoft.com/)
- Download a CloudHub or Hybrid application artifact in one click (.jar / .zip)
- See any scheduler and alert setup in an application.
- If you are in a trial instance, you are able to see the remaining days before your Anypoint account expires.                    

扩展基本信息

名称 Anypoint Platform Chrome Extension Anypoint Platform Chrome Extension
ID gofndnflkobgljnjjalmehnlamoifmhc
官方URL https://chromewebstore.google.com/detail/anypoint-platform-chrome/gofndnflkobgljnjjalmehnlamoifmhc
简介 Anypoint Platform Chrome Extension
文件大小 70.03 MB
安装次数 249
当前版本 2.8
更新时间 2024-03-02
上架时间 2020-11-18
评分 5.00/5 共3次评分
开发者 https://yucelmoran.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://yucelmoran.com/anypoint-platform-chrome-extension/
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Anypoint Platform Chrome Extension",
    "description": "Anypoint Platform Chrome Extension",
    "version": "2.8",
    "background": {
        "service_worker": "service-worker.js"
    },
    "options_page": "settings\/settings.html",
    "permissions": [
        "scripting",
        "storage",
        "tabs",
        "webRequest",
        "activeTab",
        "declarativeContent"
    ],
    "host_permissions": [
        "https:\/\/anypoint.mulesoft.com\/*",
        "*:\/\/*\/*"
    ],
    "action": {
        "default_title": "Click to show an alert",
        "default_icon": {
            "16": "icons\/mule.png",
            "24": "icons\/mule.png",
            "32": "icons\/mule.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "foreground.js"
            ],
            "matches": [
                "https:\/\/anypoint.mulesoft.com\/*"
            ]
        }
    ]
}