ZScaler Bypass
Bypasses ZScaler validation by automatically entering the account and password for you.
Qu'est-ce que ZScaler Bypass ?
ZScaler Bypass est une extension Chrome développée par Goodwine, et sa fonction principale est "Bypasses ZScaler validation by automatically entering the account and password for you.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ZScaler Bypass
Téléchargez les fichiers d'extension ZScaler Bypass au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
In my workplace, they have implemented ZScaler to prevent users to lose time on social networks, personal e-mail, etc. And that is kind of acceptable but It is very bothersome to input your account and password every day; it ends up ruining your productivity.
So I decided to make this so you don't have to lose time logging in.
-- Steps --
1- Install this extension.
2- Go to Options > Extensions > ZScaler Bypass > Options
3- Set your account and password.
4- Save.
(You can add "Allow in incognito" because the cookies are always cleared when you close your browser, and I guess you noticed that you have to log in again every time)
5- Browse
-------------
-- Notes --
* This extension uses simple localStorage, it does not send any information externally, so it will remain secure as long as nobody else uses your computer.
* The only raison d'être of this extension is "skipping" the bothersome Log In screen, not to bypass it's security.
* Using this extension is your sole responsibility, it may be against your employer's policies, be aware of that and do NOT install this unless you agree that whatever happens is your fault.
Port to Firefox using GreaseMonkey:
Make sure to install GreaseMonkey first as a Firefox Addon, then install the following script:
https://github.com/Goodwine/ZScalerSux/raw/master/GM/bypass.user.js
It has been tested in FF12+ and GM1.5+ Informations de Base sur l'Extension
| Nom | |
| ID | inpjnonajpfooenokaaficjpohcpikdl |
| URL Officiel | https://chrome.google.com/webstore/detail/zscaler-bypass/inpjnonajpfooenokaaficjpohcpikdl |
| Description | Bypasses ZScaler validation by automatically entering the account and password for you. |
| Taille du Fichier | 33.22 KB |
| Nombre d'Installations | 2,048 |
| Version Actuelle | 0.3.3 |
| Dernière Mise à Jour | 2015-12-19 |
| Date de Publication | 2015-12-19 |
| Évaluation | 2.93/5 Total 28 Évaluations |
| Développeur | Goodwine |
| [email protected] | |
| Type de Paiement | free |
| Langues Prises en Charge | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"js": [
"bypass.js"
],
"matches": [
"https:\/\/*.zscaler.net\/*",
"http:\/\/*.zscaler.net\/*"
],
"run_at": "document_end"
}
],
"description": "Bypasses ZScaler validation by automatically entering the account and password for you.",
"icons": {
"128": ".\/img\/128.png",
"16": ".\/img\/16.png",
"48": ".\/img\/48.png"
},
"name": "ZScaler Bypass",
"options_page": "options.html",
"permissions": [
"https:\/\/*.zscaler.net\/*",
"http:\/\/*.zscaler.net\/*"
],
"version": "0.3.3"
} | |