IncognitoDeathTimer

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

IncognitoDeathTimer क्या है?

IncognitoDeathTimer azimbin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में IncognitoDeathTimer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}