IncognitoDeathTimer

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

Apa itu IncognitoDeathTimer?

IncognitoDeathTimer adalah ekstensi Chrome yang dikembangkan oleh azimbin, dan fitur utamanya adalah "IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi IncognitoDeathTimer

Unduh file ekstensi IncognitoDeathTimer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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"                    

Informasi Dasar Ekstensi

Nama IncognitoDeathTimer IncognitoDeathTimer
ID jnpnkeaadjmmioeplgpgbpmdjdhebfgb
URL Resmi https://chromewebstore.google.com/detail/incognitodeathtimer/jnpnkeaadjmmioeplgpgbpmdjdhebfgb
Deskripsi IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout
Ukuran File 13.45 KB
Jumlah Instalasi 46
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-06-07
Tanggal Publikasi 2016-06-07
Penilaian 5.00/5 Total 1 Penilaian
Pengembang azimbin
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}