UnTab

Search through tabs, history, bookmarks and perform common browser actions like a hero!

Wat is UnTab?

UnTab is een Chrome-extensie ontwikkeld door Akash Hamirwasia, en de belangrijkste functie is "Search through tabs, history, bookmarks and perform common browser actions like a hero!".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie UnTab

Download UnTab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Most of us have dozens of open tabs, and it quickly becomes cumbersome to manage them efficiently. UnTab is a free and open-source browser extension that gives you superpowers by making it possible to search through open tabs, history, bookmarks and perform common actions with just a few keystrokes.

With UnTab you can:
- 🔍 Search and Switch open tabs, history, bookmarks.
- 🚀 Open Google, DuckDuckGo, Bing search results.
- 💡 Pin/Unpin and close open tabs.
- 🌐 Open a link by typing it's URL.
- 🎨 Choose beautiful themes for UnTab based to your mood.

UnTab search interface can be opened by pressing Ctrl + Shift + Space or Command + Shift + Space (Mac).                    

Basisinformatie over de Extensie

Naam UnTab UnTab
ID cijggohdciglnifgpobicololkdjihad
Officiële URL https://chromewebstore.google.com/detail/untab/cijggohdciglnifgpobicololkdjihad
Beschrijving Search through tabs, history, bookmarks and perform common browser actions like a hero!
Bestandsgrootte 105 KB
Aantal Installaties 310
Huidige Versie 0.4.0
Laatst Bijgewerkt 2022-01-18
Publicatiedatum 2021-02-08
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Akash Hamirwasia
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://getuntab.now.sh
Help Pagina-URL https://github.com/blenderskool/untab/issues
URL van de Privacybeleid Pagina https://pigmnts.web.app/privacy-policy
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UnTab",
    "version": "0.4.0",
    "author": "Akash Hamirwasia",
    "description": "Search through tabs, history, bookmarks and perform common browser actions like a hero!",
    "homepage_url": "https:\/\/getuntab.now.sh",
    "icons": {
        "48": "static\/icons\/icon_48.png",
        "96": "static\/icons\/icon_96.png",
        "128": "static\/icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "browser-polyfill.min.js",
                "content\/content.js"
            ],
            "css": [
                "content\/styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "index.html"
    ],
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "browser_action": [],
    "commands": {
        "toggle-search": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space",
                "mac": "Command+Shift+Space"
            },
            "description": "Send a 'toggle-search' event to the extension"
        }
    },
    "permissions": [
        "tabs",
        "chrome:\/\/favicon\/",
        "storage"
    ],
    "optional_permissions": [
        "bookmarks",
        "history",
        "https:\/\/api.duckduckgo.com\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'; img-src http: https: data: chrome:\/\/favicon;"
}