IncognitoDeathTimer
IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout
¿Qué es IncognitoDeathTimer?
IncognitoDeathTimer es una extensión de Chrome desarrollada por azimbin, y su función principal es "IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión IncognitoDeathTimer
Descarga archivos de extensión IncognitoDeathTimer 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
This extension will automatically close out of any incognito tabs after a certain amount of time and either replace the page with google or have it display a message of your choosing. Lets say you are looking at cornhub.com and you suddenly die. Your friends come in the door after a week and are like "wtf? hes dead, and he is watching CobDestroyers 3some pt. 4 on his laptop"
Información Básica de la Extensión
Nombre | IncognitoDeathTimer |
ID | jnpnkeaadjmmioeplgpgbpmdjdhebfgb |
URL Oficial | https://chromewebstore.google.com/detail/incognitodeathtimer/jnpnkeaadjmmioeplgpgbpmdjdhebfgb |
Descripción | IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout |
Tamaño del Archivo | 13.45 KB |
Cantidad de Instalaciones | 46 |
Versión Actual | 1.0 |
Última Actualización | 2016-06-07 |
Fecha de Publicación | 2016-06-07 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | azimbin |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "IncognitoDeathTimer", "version": "1.0", "description": "IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout ", "permissions": [ "http:\/\/*.com\/", "tabs", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "script.js" ], "run_at": "document_start" } ], "browser_action": { "default_popup": "options.html", "default_icon": "icon.png", "default_title": "Closes any Incognito window open for more than an hour" } } |