Stay Signed Out

Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.

Stay Signed Out란 무엇입니까?

Stay Signed Out은(는) https://staysignedout.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Stay Signed Out 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Stay Signed Out automatically unchecks the "Stay signed in" checkbox on the Google Accounts Sign in page.

Now, also hides "Visit My Account" pop box on the Google homepage. Neat.

It is small, fast, and unobtrusive.                    

확장 프로그램 기본 정보

이름 Stay Signed Out Stay Signed Out
ID ecgmpblnpipfpampgnnheaacnpadpagi
공식 URL https://chromewebstore.google.com/detail/stay-signed-out/ecgmpblnpipfpampgnnheaacnpadpagi
설명 Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.
파일 크기 18.07 KB
설치 횟수 95
현재 버전 0.0.8
최근 업데이트 2015-06-06
출시 날짜 2015-06-05
평점 2.67/5 총 3 개의 평점
개발자 https://staysignedout.com
결제 유형 free
확장 프로그램 웹 사이트 http://staysignedout.com
도움말 페이지 URL https://groups.google.com/d/forum/StaySignedOut
지원되는 언어 de,en,fr,es,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "short_name": "__MSG_shortName__",
    "version": "0.0.8",
    "author": "operator",
    "default_locale": "en",
    "description": "__MSG_extDesc__",
    "incognito": "spanning",
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "images\/16x16.png",
        "32": "images\/32x32.png",
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    },
    "page_action": {
        "default_title": "Stay Signed Out",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/accounts.google.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "uncheck.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "include_globs": [
                "http:\/\/www.google.*\/*",
                "https:\/\/www.google.*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "hide_popup.js"
            ]
        },
        {
            "matches": [
                "*:\/\/staysignedout.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "installCheck.js"
            ]
        }
    ],
    "manifest_version": 2
}