Quick Login for Google Accounts (minor fix)

This is not my extension. I have just added two lines of code to make this work.

Quick Login for Google Accounts (minor fix)란 무엇입니까?

Quick Login for Google Accounts (minor fix)은(는) robotreply에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is not my extension. I have just added two lines of code to make this work."입니다.

확장 프로그램 스크린샷

screenshot

Quick Login for Google Accounts (minor fix) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        One click google sign in. This is not my extension. I have just added two lines of code to make this work."                    

확장 프로그램 기본 정보

이름 Quick Login for Google Accounts (minor fix) Quick Login for Google Accounts (minor fix)
ID aghppbkjbhgjnapmofheihifejlblaee
공식 URL https://chromewebstore.google.com/detail/quick-login-for-google-ac/aghppbkjbhgjnapmofheihifejlblaee
설명 This is not my extension. I have just added two lines of code to make this work.
파일 크기 82.01 KB
설치 횟수 306
현재 버전 0.7.9.4
최근 업데이트 2014-08-08
출시 날짜 2014-08-08
개발자 robotreply
결제 유형 free
지원되는 언어 en
manifest.json
{
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "This is not my extension. I have just added two lines of code to make this work."
    },
    "content_scripts": [
        {
            "js": [
                "jquery-1.7.2.min.js",
                "login.js"
            ],
            "matches": [
                "https:\/\/www.google.com\/*",
                "https:\/\/accounts.google.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "description": "This is not my extension. I have just added two lines of code to make this work.",
    "icons": {
        "128": "icon_128.png",
        "16": "icon_16.png",
        "48": "icon_48.png"
    },
    "manifest_version": 2,
    "name": "Quick Login for Google Accounts (minor fix)",
    "options_page": "options.html",
    "permissions": [
        "cookies",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.7.9.4",
    "web_accessible_resources": [
        "icon_open_left2.png",
        "offline.png",
        "hover_left.png",
        "hover_bg.png",
        "hover_right.png",
        "online.png"
    ]
}