UnTab

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

什么是UnTab?

UnTab是由Akash Hamirwasia开发的Chrome扩展程序,该扩展的主要功能是“Search through tabs, history, bookmarks and perform common browser actions like a hero!”。

扩展截图

screenshot
screenshot
screenshot

下载UnTab扩展crx文件

下载UnTab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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).                    

扩展基本信息

名称 UnTab UnTab
ID cijggohdciglnifgpobicololkdjihad
官方URL https://chromewebstore.google.com/detail/untab/cijggohdciglnifgpobicololkdjihad
简介 Search through tabs, history, bookmarks and perform common browser actions like a hero!
文件大小 105 KB
安装次数 310
当前版本 0.4.0
更新时间 2022-01-18
上架时间 2021-02-08
评分 5.00/5 共4次评分
开发者 Akash Hamirwasia
电子邮箱 [email protected]
付费类型 free
扩展官网 https://getuntab.now.sh
帮助页面URL https://github.com/blenderskool/untab/issues
隐私政策页面URL https://pigmnts.web.app/privacy-policy
支持的语言 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;"
}