My Hotspots
Connect easily to your favorite hotspots.
Hvad er My Hotspots?
My Hotspots er en Chrome-udvidelse udviklet af François Beaufort, og dens hovedfunktion er "Connect easily to your favorite hotspots.".
Udvidelsesskærmbilleder
Download My Hotspots-udvidelses-CRX-fil
Download My Hotspots-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | My Hotspots |
ID | kngmdnkaeiaodchlfljkkinpphgfmkfg |
Officiel URL | https://chromewebstore.google.com/detail/my-hotspots/kngmdnkaeiaodchlfljkkinpphgfmkfg |
Beskrivelse | Connect easily to your favorite hotspots. |
Filstørrelse | 30.16 KB |
Antal Installationer | 735 |
Nuværende Version | 0.0.1 |
Senest Opdateret | 2015-04-15 |
Udgivelsesdato | 2015-04-15 |
Bedømmelse | 3.86/5 Samlet 22 Bedømmelser |
Udvikler | François Beaufort |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } } |