UnTab

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

UnTab là gì?

UnTab là một tiện ích mở rộng Chrome được phát triển bởi Akash Hamirwasia, và tính năng chính của nó là "Search through tabs, history, bookmarks and perform common browser actions like a hero!".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng UnTab 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

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

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

Tên UnTab UnTab
ID cijggohdciglnifgpobicololkdjihad
URL Chính Thức https://chromewebstore.google.com/detail/untab/cijggohdciglnifgpobicololkdjihad
Mô tả Search through tabs, history, bookmarks and perform common browser actions like a hero!
Kích Thước Tệp 105 KB
Số Lần Cài Đặt 310
Phiên Bản Hiện Tại 0.4.0
Cập Nhật Lần Cuối 2022-01-18
Ngày Phát Hành 2021-02-08
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Akash Hamirwasia
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://getuntab.now.sh
URL Trang Trợ Giúp https://github.com/blenderskool/untab/issues
URL Trang Chính Sách Bảo Mật https://pigmnts.web.app/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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;"
}