Stay Signed Out

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

What is Stay Signed Out?

Stay Signed Out is a Chrome extension developed by https://staysignedout.com, and its main feature is "Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.".

Extension Screenshots

screenshot
screenshot

Download Stay Signed Out Extension CRX File

Download Stay Signed Out extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Stay Signed Out Stay Signed Out
ID ecgmpblnpipfpampgnnheaacnpadpagi
Official URL https://chromewebstore.google.com/detail/stay-signed-out/ecgmpblnpipfpampgnnheaacnpadpagi
Description Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.
File Size 18.07 KB
Installation Count 95
Current Version 0.0.8
Last Updated 2015-06-06
Publish Date 2015-06-05
Rating 2.67/5 Total 3 Ratings
Developer https://staysignedout.com
Payment Type free
Extension Website http://staysignedout.com
Help Page URL https://groups.google.com/d/forum/StaySignedOut
Supported Languages 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
}