Stay Signed Out

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

Apa itu Stay Signed Out?

Stay Signed Out adalah ekstensi Chrome yang dikembangkan oleh https://staysignedout.com, dan fitur utamanya adalah "Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Stay Signed Out

Unduh file ekstensi Stay Signed Out dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Stay Signed Out Stay Signed Out
ID ecgmpblnpipfpampgnnheaacnpadpagi
URL Resmi https://chromewebstore.google.com/detail/stay-signed-out/ecgmpblnpipfpampgnnheaacnpadpagi
Deskripsi Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.
Ukuran File 18.07 KB
Jumlah Instalasi 95
Versi Saat Ini 0.0.8
Terakhir Diperbarui 2015-06-06
Tanggal Publikasi 2015-06-05
Penilaian 2.67/5 Total 3 Penilaian
Pengembang https://staysignedout.com
Tipe Pembayaran free
Situs Ekstensi http://staysignedout.com
URL Halaman Bantuan https://groups.google.com/d/forum/StaySignedOut
Bahasa yang Didukung 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
}