The latest Chrome doesn't allowed user to install crx extension directly and request to install from Chrome web store, we can decompress the crx file to zip folder or download zip file for instead. Below Tunnel-Switch example will teach you how to pass it:
- Download Tunnel-Switch zip file: https://github.com/oylbin/tunnel-switch
- Decompress zip file
- Chrome-->more tools-->extensions-->tick 'Developer mode'-->Load unpacked extension
- Browse to decompress zip folder to load
- Pass, click option to setup
Remarks:
For other extensions, when you load it, it'll prompt ''manifest_version'' should be 2 problem, you can refer below manifest.jason file to add red line to try.
{ | |
"name": "TunnelSwitch" | |
,"version": "1.0.4" | |
,"manifest_version": 2 | |
,"description": "cycle through your proxy settings" | |
,"icons": { "128": "asset/image/tunnel_switch.png" } | |
,"background": { | |
"page" : "asset/html/background.html" | |
} | |
,"options_page": "asset/html/options.html" | |
,"permissions": [ | |
"proxy", "tabs", "http://*/*", "https://*/*" | |
] | |
,"browser_action": { | |
"default_title": "Click to change the proxy" | |
,"default_icon":"asset/image/direct.png" | |
} | |
,"homepage_url":"https://github.com/oylbin/tunnel-switch" | |
} |
Comments
Post a Comment