Stay Signed Out

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

Stay Signed Out क्या है?

Stay Signed Out https://staysignedout.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Stay Signed Out एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}