My Hotspots
Connect easily to your favorite hotspots.
Qu'est-ce que My Hotspots ?
My Hotspots est une extension Chrome développée par François Beaufort, et sa fonction principale est "Connect easily to your favorite hotspots.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension My Hotspots
Téléchargez les fichiers d'extension My Hotspots 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
My Hotspots is a Chrome OS Extension which makes your life easier: - Store all your hotspots credentials - Connect to your favorite hotspots seamlessly Warning! It actually takes advantage of the networking.config API to authenticate to captive portals which is only available in Dev Channel. Source code is available at https://github.com/beaufortfrancois/my-hotspots-chrome-extension
Informations de Base sur l'Extension
Nom | My Hotspots |
ID | kngmdnkaeiaodchlfljkkinpphgfmkfg |
URL Officiel | https://chromewebstore.google.com/detail/my-hotspots/kngmdnkaeiaodchlfljkkinpphgfmkfg |
Description | Connect easily to your favorite hotspots. |
Taille du Fichier | 30.16 KB |
Nombre d'Installations | 735 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2015-04-15 |
Date de Publication | 2015-04-15 |
Évaluation | 3.86/5 Total 22 Évaluations |
Développeur | François Beaufort |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "My Hotspots", "description": "Connect easily to your favorite hotspots.", "version": "0.0.1", "minimum_chrome_version": "43", "icons": { "16": "images\/icon16.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_popup": "popup.html" }, "permissions": [ "networking.config", "notifications", "storage", "http:\/\/www.gstatic.com\/generate_204" ], "optional_permissions": [ "https:\/\/hotspot.wifi.sfr.fr\/", "https:\/\/hotspotwifi.bouyguestelecom.fr\/", "https:\/\/wifi.free.fr\/" ], "background": { "scripts": [ "common.js", "background.js" ] } } |