Service Health Check
Run Health check request against a URL
Qu'est-ce que Service Health Check ?
Service Health Check est une extension Chrome développée par Godoy, et sa fonction principale est "Run Health check request against a URL".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Service Health Check
Téléchargez les fichiers d'extension Service Health Check au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Informations de Base sur l'Extension
Nom | |
ID | kafklllgljoglnmjggodkhflgdmlinig |
URL Officiel | https://chromewebstore.google.com/detail/service-health-check/kafklllgljoglnmjggodkhflgdmlinig |
Description | Run Health check request against a URL |
Taille du Fichier | 39.69 KB |
Nombre d'Installations | 101 |
Version Actuelle | 0.0.3 |
Dernière Mise à Jour | 2018-11-17 |
Date de Publication | 2018-11-12 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Godoy |
Type de Paiement | free |
Langues Prises en Charge | 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 } |