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
官方網址 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
}