ZScaler Bypass
Bypasses ZScaler validation by automatically entering the account and password for you.
ZScaler Bypass란 무엇입니까?
ZScaler Bypass은(는) Goodwine에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bypasses ZScaler validation by automatically entering the account and password for you."입니다.
확장 프로그램 스크린샷
ZScaler Bypass 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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+ 확장 프로그램 기본 정보
| 이름 | |
| ID | inpjnonajpfooenokaaficjpohcpikdl |
| 공식 URL | https://chrome.google.com/webstore/detail/zscaler-bypass/inpjnonajpfooenokaaficjpohcpikdl |
| 설명 | Bypasses ZScaler validation by automatically entering the account and password for you. |
| 파일 크기 | 33.22 KB |
| 설치 횟수 | 2,048 |
| 현재 버전 | 0.3.3 |
| 최근 업데이트 | 2015-12-19 |
| 출시 날짜 | 2015-12-19 |
| 평점 | 2.93/5 총 28 개의 평점 |
| 개발자 | Goodwine |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 지원되는 언어 | 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"
} | |