Anypoint Platform Chrome Extension
Anypoint Platform Chrome Extension
¿Qué es Anypoint Platform Chrome Extension?
Anypoint Platform Chrome Extension es una extensión de Chrome desarrollada por https://yucelmoran.com, y su función principal es "Anypoint Platform Chrome Extension".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Anypoint Platform Chrome Extension
Descarga archivos de extensión Anypoint Platform Chrome Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Anypoint Platform Chrome Extension |
ID | gofndnflkobgljnjjalmehnlamoifmhc |
URL Oficial | https://chromewebstore.google.com/detail/anypoint-platform-chrome/gofndnflkobgljnjjalmehnlamoifmhc |
Descripción | Anypoint Platform Chrome Extension |
Tamaño del Archivo | 70.03 MB |
Cantidad de Instalaciones | 249 |
Versión Actual | 2.8 |
Última Actualización | 2024-03-02 |
Fecha de Publicación | 2020-11-18 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | https://yucelmoran.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://yucelmoran.com/anypoint-platform-chrome-extension/ |
Idiomas Soportados | 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\/*" ] } ] } |