Stay Signed Out

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

Τι είναι το Stay Signed Out;

Το Stay Signed Out είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://staysignedout.com, και η κύρια λειτουργία του είναι "Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Stay Signed Out

Λήψη αρχείων επέκτασης 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
}