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ファイルをダウンロード

Stay Signed Out拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
}