IncognitoDeathTimer

IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout

Was ist IncognitoDeathTimer?

IncognitoDeathTimer ist eine Chrome-Erweiterung, die von azimbin entwickelt wurde, und ihr Hauptmerkmal ist "IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout".

Erweiterungsscreenshots

screenshot

IncognitoDeathTimer-Erweiterungs-CRX-Datei herunterladen

Laden Sie IncognitoDeathTimer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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"                    

Grundlegende Informationen zur Erweiterung

Name IncognitoDeathTimer IncognitoDeathTimer
ID jnpnkeaadjmmioeplgpgbpmdjdhebfgb
Offizielle URL https://chromewebstore.google.com/detail/incognitodeathtimer/jnpnkeaadjmmioeplgpgbpmdjdhebfgb
Beschreibung IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout
Dateigröße 13.45 KB
Installationsanzahl 46
Aktuelle Version 1.0
Letztes Update 2016-06-07
Veröffentlichungsdatum 2016-06-07
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler azimbin
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}