IncognitoDeathTimer

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

IncognitoDeathTimer là gì?

IncognitoDeathTimer là một tiện ích mở rộng Chrome được phát triển bởi azimbin, và tính năng chính của nó là "IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng IncognitoDeathTimer

Tải xuống các tệp mở rộng IncognitoDeathTimer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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"                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên IncognitoDeathTimer IncognitoDeathTimer
ID jnpnkeaadjmmioeplgpgbpmdjdhebfgb
URL Chính Thức https://chromewebstore.google.com/detail/incognitodeathtimer/jnpnkeaadjmmioeplgpgbpmdjdhebfgb
Mô tả IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout
Kích Thước Tệp 13.45 KB
Số Lần Cài Đặt 46
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-06-07
Ngày Phát Hành 2016-06-07
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển azimbin
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}