My Hotspots
Connect easily to your favorite hotspots.
What is My Hotspots?
My Hotspots is a Chrome extension developed by François Beaufort, and its main feature is "Connect easily to your favorite hotspots.".
Extension Screenshots
Download My Hotspots Extension CRX File
Download My Hotspots extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | My Hotspots |
ID | kngmdnkaeiaodchlfljkkinpphgfmkfg |
Official URL | https://chromewebstore.google.com/detail/my-hotspots/kngmdnkaeiaodchlfljkkinpphgfmkfg |
Description | Connect easily to your favorite hotspots. |
File Size | 30.16 KB |
Installation Count | 735 |
Current Version | 0.0.1 |
Last Updated | 2015-04-15 |
Publish Date | 2015-04-15 |
Rating | 3.86/5 Total 22 Ratings |
Developer | François Beaufort |
Payment Type | free |
Supported Languages | 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" ] } } |