IncognitoDeathTimer
IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout
什么是IncognitoDeathTimer?
IncognitoDeathTimer是由azimbin开发的Chrome扩展程序,该扩展的主要功能是“IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout”。
扩展截图
下载IncognitoDeathTimer扩展crx文件
下载IncognitoDeathTimer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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"
扩展基本信息
名称 | IncognitoDeathTimer |
ID | jnpnkeaadjmmioeplgpgbpmdjdhebfgb |
官方URL | https://chromewebstore.google.com/detail/incognitodeathtimer/jnpnkeaadjmmioeplgpgbpmdjdhebfgb |
简介 | IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout |
文件大小 | 13.45 KB |
安装次数 | 46 |
当前版本 | 1.0 |
更新时间 | 2016-06-07 |
上架时间 | 2016-06-07 |
评分 | 5.00/5 共1次评分 |
开发者 | azimbin |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } } |