Stay Signed Out
Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.
¿Qué es Stay Signed Out?
Stay Signed Out es una extensión de Chrome desarrollada por https://staysignedout.com, y su función principal es "Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Stay Signed Out
Descarga archivos de extensión Stay Signed Out en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Stay Signed Out |
ID | ecgmpblnpipfpampgnnheaacnpadpagi |
URL Oficial | https://chromewebstore.google.com/detail/stay-signed-out/ecgmpblnpipfpampgnnheaacnpadpagi |
Descripción | Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page. |
Tamaño del Archivo | 18.07 KB |
Cantidad de Instalaciones | 95 |
Versión Actual | 0.0.8 |
Última Actualización | 2015-06-06 |
Fecha de Publicación | 2015-06-05 |
Calificación | 2.67/5 Total de 3 Calificaciones |
Desarrollador | https://staysignedout.com |
Tipo de Pago | free |
Sitio Web de la Extensión | http://staysignedout.com |
URL de la Página de Ayuda | https://groups.google.com/d/forum/StaySignedOut |
Idiomas Soportados | 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 } |