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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
            ]
        }
    ]
}