Stay Signed Out

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

Cos'è Stay Signed Out?

Stay Signed Out è un'estensione di Chrome sviluppata da https://staysignedout.com, e la sua funzione principale è "Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Stay Signed Out

Scarica i file di estensione Stay Signed Out in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Stay Signed Out Stay Signed Out
ID ecgmpblnpipfpampgnnheaacnpadpagi
URL Ufficiale https://chromewebstore.google.com/detail/stay-signed-out/ecgmpblnpipfpampgnnheaacnpadpagi
Descrizione Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.
Dimensione del File 18.07 KB
Conteggio Installazioni 95
Versione Corrente 0.0.8
Ultimo Aggiornamento 2015-06-06
Data di Pubblicazione 2015-06-05
Valutazione 2.67/5 Totale 3 Valutazioni
Sviluppatore https://staysignedout.com
Tipo di Pagamento free
Sito Web dell'Estensione http://staysignedout.com
URL della Pagina di Aiuto https://groups.google.com/d/forum/StaySignedOut
Lingue Supportate 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
}