My Hotspots
Connect easily to your favorite hotspots.
Vad är My Hotspots?
My Hotspots är en Chrome-tillägg utvecklad av François Beaufort, och dess huvudfunktion är "Connect easily to your favorite hotspots.".
Tilläggsskärmbilder
Ladda ner My Hotspots-förlängningens CRX-fil
Ladda ner My Hotspots-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | My Hotspots |
ID | kngmdnkaeiaodchlfljkkinpphgfmkfg |
Officiell webbadress | https://chromewebstore.google.com/detail/my-hotspots/kngmdnkaeiaodchlfljkkinpphgfmkfg |
Beskrivning | Connect easily to your favorite hotspots. |
Filstorlek | 30.16 KB |
Antal Installationer | 735 |
Aktuell Version | 0.0.1 |
Senast Uppdaterad | 2015-04-15 |
Publiceringsdatum | 2015-04-15 |
Betyg | 3.86/5 Totalt 22 Betyg |
Utvecklare | François Beaufort |
Betalningssätt | free |
Stödda Språk | 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" ] } } |