Stay Signed Out
Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.
Qu'est-ce que Stay Signed Out ?
Stay Signed Out est une extension Chrome développée par https://staysignedout.com, et sa fonction principale est "Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Stay Signed Out
Téléchargez les fichiers d'extension Stay Signed Out au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Stay Signed Out |
ID | ecgmpblnpipfpampgnnheaacnpadpagi |
URL Officiel | https://chromewebstore.google.com/detail/stay-signed-out/ecgmpblnpipfpampgnnheaacnpadpagi |
Description | Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page. |
Taille du Fichier | 18.07 KB |
Nombre d'Installations | 95 |
Version Actuelle | 0.0.8 |
Dernière Mise à Jour | 2015-06-06 |
Date de Publication | 2015-06-05 |
Évaluation | 2.67/5 Total 3 Évaluations |
Développeur | https://staysignedout.com |
Type de Paiement | free |
Site Web de l'Extension | http://staysignedout.com |
URL de la Page d'Aide | https://groups.google.com/d/forum/StaySignedOut |
Langues Prises en Charge | 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 } |