IncognitoDeathTimer

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

ما هو IncognitoDeathTimer؟

IncognitoDeathTimer هو إضافة Chrome تم تطويرها بواسطة azimbin، والميزة الرئيسية لها هي "IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة IncognitoDeathTimer

قم بتنزيل ملفات الامتداد IncognitoDeathTimer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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 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"
    }
}