Omni - Bookmark, History, & Tab Manager

Supercharge Chrome with commands, shortcuts, and more

Omni - Bookmark, History, & Tab Manager là gì?

Omni - Bookmark, History, & Tab Manager là một tiện ích mở rộng Chrome được phát triển bởi Alyssa X, và tính năng chính của nó là "Supercharge Chrome with commands, shortcuts, and more".

Ả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 Omni - Bookmark, History, & Tab Manager

Tải xuống các tệp mở rộng Omni - Bookmark, History, & Tab Manager 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

                        With Omni you can use Chrome like a pro. Manage tabs, bookmarks, your browser history, perform all sorts of actions and more with a simple command interface.

FEATURES
🗄 Switch, open, close, and search your tabs
📚 Browse and manage your bookmarks
🔍 Search your browsing history
⚡️ 50+ actions to improve your productivity
🔮 Special commands to filter and perform more actions
🧩 Integrations with Notion, Figma, Docs, Asana...
⌨️ Shortcuts for actions such as muting, pinning, bookmarking...
⚙️ Advanced settings to help troubleshoot browsing issues
🌙 Dark mode
...and much more - all for free & no sign in needed!

Want to self-host, add new features to Omni, or even make your own omnisearch extension? Feel free to check out the code on GitHub! 👉 https://github.com/alyssaxuu/omni

Omni is built and maintained by Alyssa X (https://alyssax.com)                    

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

Tên Omni - Bookmark, History, & Tab Manager Omni - Bookmark, History, & Tab Manager
ID mapjgeachilmcbbokkgcbgpbakaaeehi
URL Chính Thức https://chromewebstore.google.com/detail/omni-bookmark-history-tab/mapjgeachilmcbbokkgcbgpbakaaeehi
Mô tả Supercharge Chrome with commands, shortcuts, and more
Kích Thước Tệp 1.91 MB
Số Lần Cài Đặt 22,845
Phiên Bản Hiện Tại 1.4.7
Cập Nhật Lần Cuối 2022-03-22
Ngày Phát Hành 2022-01-10
Đánh Giá 4.65/5 Tổng số 55 Đánh Giá
Nhà Phát Triển Alyssa X
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/alyssaxuu/omni
URL Trang Trợ Giúp https://github.com/alyssaxuu/omni/issues
URL Trang Chính Sách Bảo Mật https://alyssax.com/x/screenity/privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Omni - Bookmark, History, & Tab Manager",
    "description": "Supercharge Chrome with commands, shortcuts, and more",
    "offline_enabled": true,
    "version": "1.4.7",
    "manifest_version": 3,
    "action": {
        "icons": {
            "16": "assets\/logo-16.png",
            "48": "assets\/logo-48.png",
            "128": "assets\/logo-128.png"
        }
    },
    "icons": {
        "16": "assets\/logo-16.png",
        "48": "assets\/logo-48.png",
        "128": "assets\/logo-128.png"
    },
    "commands": {
        "open-omni": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Command+Shift+K"
            },
            "description": "Open command menu"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "focus.js",
                "jquery.js",
                "content.js",
                "virtualized-list.min.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.html",
                "newtab.html",
                "assets\/*",
                "popup.css",
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "bookmarks",
        "browsingData",
        "history",
        "scripting",
        "search"
    ],
    "host_permissions": [
        "https:\/\/www.googleapis.com\/*",
        "https:\/\/gstatic.com\/*",
        "*:\/\/*\/*"
    ]
}