Stay Signed Out

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

Was ist Stay Signed Out?

Stay Signed Out ist eine Chrome-Erweiterung, die von https://staysignedout.com entwickelt wurde, und ihr Hauptmerkmal ist "Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.".

Erweiterungsscreenshots

screenshot
screenshot

Stay Signed Out-Erweiterungs-CRX-Datei herunterladen

Laden Sie Stay Signed Out-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Stay Signed Out Stay Signed Out
ID ecgmpblnpipfpampgnnheaacnpadpagi
Offizielle URL https://chromewebstore.google.com/detail/stay-signed-out/ecgmpblnpipfpampgnnheaacnpadpagi
Beschreibung Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.
Dateigröße 18.07 KB
Installationsanzahl 95
Aktuelle Version 0.0.8
Letztes Update 2015-06-06
Veröffentlichungsdatum 2015-06-05
Bewertung 2.67/5 Insgesamt 3 Bewertungen
Entwickler https://staysignedout.com
Zahlungsart free
Erweiterungswebsite http://staysignedout.com
Hilfeseite URL https://groups.google.com/d/forum/StaySignedOut
Unterstützte Sprachen 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
}