Auto Login

Automatically login to your favourite websites without entering credentials , even for Basic Auth Now

Auto Login란 무엇입니까?

Auto Login은(는) Muthukumaran Navaneethakrishnan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically login to your favourite websites without entering credentials , even for Basic Auth Now"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Auto Login 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        If you are a person, who would like an automated solution to logging into your favourite sites & Basic Auth without popping up, this extension is for you. 

What it does
===============

Allow User to autmatically login to websites, with saved credentials



Features
========
Changed the Algorithm for Capturing to work across multiple sites. 

Automated login to your websites , with saved username /password

Enable /Disable auto login for individual websites.

Autologin Information Protected by password.

Option of having a prompt for password before Automatic Login to sites

About
======

We dont inject any Ads
We dont store any information on server.
The plugin is Open Source  Have a look at https://github.com/muthuishere/autologin


Support
=======
https://www.facebook.com/pages/Auto-Login/433751853437039



Privacy Policy
=============

http://deemwar.com/chrome-extn-privacypolicy.htm

Sponsor Project
===============

Goto Autologin Options => Support                    

확장 프로그램 기본 정보

이름 Auto Login Auto Login
ID kjdgohfkopafhjmmlbojhaabfpndllgk
공식 URL https://chromewebstore.google.com/detail/auto-login/kjdgohfkopafhjmmlbojhaabfpndllgk
설명 Automatically login to your favourite websites without entering credentials , even for Basic Auth Now
파일 크기 954 KB
설치 횟수 12,508
현재 버전 4.6.0.0
최근 업데이트 2022-10-17
출시 날짜 2018-01-11
평점 3.08/5 총 73 개의 평점
개발자 Muthukumaran Navaneethakrishnan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.facebook.com/pages/Auto-Login/433751853437039
도움말 페이지 URL https://www.facebook.com/pages/Auto-Login/433751853437039
개인정보 보호 정책 페이지 URL http://deemwar.com/chrome-extn-privacypolicy.htm
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Muthukumaran Navaneethakrishnan(https:\/\/github.com\/muthuishere)",
    "background": {
        "page": "background.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "browser_action": [],
    "content_scripts": [
        {
            "js": [
                "js\/vapi-client.js",
                "js\/utils.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "default_locale": "en",
    "description": "Automatically login to your favourite websites  without entering credentials , even for Basic Auth Now",
    "homepage_url": "https:\/\/www.facebook.com\/Auto-Login-433751853437039\/",
    "icons": {
        "128": "images\/autologin-128.png",
        "48": "images\/autologin-48.png",
        "64": "images\/autologin-64.png"
    },
    "manifest_version": 2,
    "name": "Auto Login",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "short_name": "Auto Login",
    "version": "4.6.0.0",
    "web_accessible_resources": [
        "manifest.json",
        "images\/*.png",
        "images\/*.jpg",
        "css\/*.css",
        "auth.html",
        "js\/*.js"
    ]
}