Service Health Check
Run Health check request against a URL
Wat is Service Health Check?
Service Health Check is een Chrome-extensie ontwikkeld door Godoy, en de belangrijkste functie is "Run Health check request against a URL".
Extensie Screenshots
Download het CRX-bestand van de extensie Service Health Check
Download Service Health Check-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Basisinformatie over de Extensie
Naam | |
ID | kafklllgljoglnmjggodkhflgdmlinig |
Officiële URL | https://chromewebstore.google.com/detail/service-health-check/kafklllgljoglnmjggodkhflgdmlinig |
Beschrijving | Run Health check request against a URL |
Bestandsgrootte | 39.69 KB |
Aantal Installaties | 101 |
Huidige Versie | 0.0.3 |
Laatst Bijgewerkt | 2018-11-17 |
Publicatiedatum | 2018-11-12 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Godoy |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Service Health Check", "version": "0.0.3", "description": "Run Health check request against a URL", "permissions": [ "activeTab", "declarativeContent", "storage", "contextMenus", "tabs", "notifications" ], "options_ui": { "page": "options.html", "open_in_tab": false }, "content_scripts": [ { "js": [ "jquery-3.3.1.min.js", "main.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Service Health Check", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |