My Hotspots
Connect easily to your favorite hotspots.
Was ist My Hotspots?
My Hotspots ist eine Chrome-Erweiterung, die von François Beaufort entwickelt wurde, und ihr Hauptmerkmal ist "Connect easily to your favorite hotspots.".
Erweiterungsscreenshots
My Hotspots-Erweiterungs-CRX-Datei herunterladen
Laden Sie My Hotspots-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | My Hotspots |
ID | kngmdnkaeiaodchlfljkkinpphgfmkfg |
Offizielle URL | https://chromewebstore.google.com/detail/my-hotspots/kngmdnkaeiaodchlfljkkinpphgfmkfg |
Beschreibung | Connect easily to your favorite hotspots. |
Dateigröße | 30.16 KB |
Installationsanzahl | 735 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2015-04-15 |
Veröffentlichungsdatum | 2015-04-15 |
Bewertung | 3.86/5 Insgesamt 22 Bewertungen |
Entwickler | François Beaufort |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } } |