Force Authentication for Google™

Disables check boxes on Google sign-in pages, including 'Always logged in' and 'Don't ask for codes again on this computer'.

Τι είναι το Force Authentication for Google™;

Το Force Authentication for Google™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Master, και η κύρια λειτουργία του είναι "Disables check boxes on Google sign-in pages, including 'Always logged in' and 'Don't ask for codes again on this computer'.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Force Authentication for Google™

Λήψη αρχείων επέκτασης Force Authentication for Google™ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Forces Google authentication by preventing check boxes for 'convenience' on sign-in pages. Disables 'always' logged in, and 'Don't ask for codes again on this computer' (if two-factor is enabled), which are irritatingly always checked by default. This ensures you're always forced to authenticate when necessary, and never allows you to bypass two-factor authentication.

This extension does NOT obtain any personal information at all from your accounts page, and ONLY disables the check boxes as described above. View the source if you're concerned.

It is advised to clear your cache first after initial install by using Ctrl + Shift + Delete, and choosing "Cookies and other site and plug-in data". Then log in as normal.

----------------------------------------------------------------

v1.2.3
- Updated to support new version of Google's login page utilizing "G Codes".                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Force Authentication for Google™ Force Authentication for Google™
ID mibfgmnehcpfeafnghhhlembedakhjpm
Επίσημο URL https://chromewebstore.google.com/detail/force-authentication-for/mibfgmnehcpfeafnghhhlembedakhjpm
Περιγραφή Disables check boxes on Google sign-in pages, including 'Always logged in' and 'Don't ask for codes again on this computer'.
Μέγεθος Αρχείου 52.4 KB
Αριθμός Εγκαταστάσεων 206
Τρέχουσα Έκδοση 1.2.3
Τελευταία Ενημέρωση 2015-08-18
Ημερομηνία Δημοσίευσης 2015-08-18
Αξιολόγηση 1.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Master
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "The Master",
    "name": "Force Authentication for Google\u2122",
    "description": "Disables check boxes on Google sign-in pages, including 'Always logged in' and 'Don't ask for codes again on this computer'.",
    "manifest_version": 2,
    "version": "1.2.3",
    "icons": {
        "16": "thumbnail-16.png",
        "48": "thumbnail-48.png",
        "128": "thumbnail-48.png"
    },
    "permissions": [
        "*:\/\/accounts.google.com\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/accounts.google.com\/*"
            ],
            "js": [
                "jquery.js",
                "background.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "web_accessible_resources": [
        "jquery.js",
        "background.js",
        "thumbnail-16.png",
        "thumbnail-48.png",
        "thumbnail-128.png"
    ]
}