Stay Signed Out
Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.
O que é Stay Signed Out?
Stay Signed Out é uma extensão do Chrome desenvolvida por https://staysignedout.com, e sua principal característica é "Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Stay Signed Out
Baixe arquivos de extensão Stay Signed Out no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Stay Signed Out |
ID | ecgmpblnpipfpampgnnheaacnpadpagi |
URL Oficial | https://chromewebstore.google.com/detail/stay-signed-out/ecgmpblnpipfpampgnnheaacnpadpagi |
Descrição | Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page. |
Tamanho do Arquivo | 18.07 KB |
Contagem de Instalações | 95 |
Versão Atual | 0.0.8 |
Última Atualização | 2015-06-06 |
Data de Publicação | 2015-06-05 |
Classificação | 2.67/5 Total de 3 Avaliações |
Desenvolvedor | https://staysignedout.com |
Tipo de Pagamento | free |
Site da Extensão | http://staysignedout.com |
URL da Página de Ajuda | https://groups.google.com/d/forum/StaySignedOut |
Idiomas Suportados | 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 } |