Tab Securer

An extension to secure your private tabs.

Was ist Tab Securer?

Tab Securer ist eine Chrome-Erweiterung, die von simbathesailor entwickelt wurde, und ihr Hauptmerkmal ist "An extension to secure your private tabs.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Tab Securer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tab Securer-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

                        With the ongoing pandemic, we do collaborate using various online video conference tool lot more. For many of us it requires us to share the screen and collaborate well.  Every time we do it, we have to be careful if any private tabs are open , which should not be shown to the people going to see the screen.

For me personally it has led to lot of awkward situations, where I forgot to close the private tabs. 

To solve all that issue , I created a browser extension, which will help me prevent those awkward scenarios.

This is my first video on youtube, feel free to put comments below. and subscribe to the channel as I am going to create lot many videos around various products and their working.

Tab Securer is a browser extension which helps you to do following things:

1. Mark any tab as private and hide it across window.
2. Mark exact URL or entire domain.
3. Revive all the private tabs with one click across window
4. Tells you how many private tab open and how may secured at one place.
5. Manage all the the pages in a summary + setting page                    

Grundlegende Informationen zur Erweiterung

Name Tab Securer Tab Securer
ID fopbhlkgnegfpelfcnemgabhdcebcekj
Offizielle URL https://chromewebstore.google.com/detail/tab-securer/fopbhlkgnegfpelfcnemgabhdcebcekj
Beschreibung An extension to secure your private tabs.
Dateigröße 379 KB
Installationsanzahl 28
Aktuelle Version 1.0
Letztes Update 2020-10-21
Veröffentlichungsdatum 2020-10-20
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler simbathesailor
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Securer",
    "description": "An extension to secure your private tabs.",
    "version": "1.0",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/favicon-16x16.ico",
            "32": "images\/favicon-32x32.ico",
            "48": "images\/android-icon-48x48.ico",
            "128": "images\/apple-touch-icon-114x114.png"
        }
    },
    "manifest_version": 2,
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Open the menu option"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "images\/favicon-16x16.ico",
        "32": "images\/favicon-32x32.ico",
        "48": "images\/android-icon-48x48.ico",
        "128": "images\/apple-touch-icon-114x114.png"
    },
    "content_security_policy": "object-src 'self'; child-src 'self'; default-src 'self' https:\/\/media.giphy.com  https:\/\/cdnjs.buymeacoffee.com https:\/\/fonts.googleapis.com; style-src * 'self' 'unsafe-inline';img-src * data:; font-src *;script-src 'self' https:\/\/ssl.google-analytics.com;",
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_globs": [
                "chrome-extension:\/\/*"
            ],
            "js": [
                "contentScripts\/main.js"
            ]
        }
    ],
    "incognito": "split"
}