Omni - Bookmark, History, & Tab Manager

Supercharge Chrome with commands, shortcuts, and more

Omni - Bookmark, History, & Tab Manager क्या है?

Omni - Bookmark, History, & Tab Manager Alyssa X द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Supercharge Chrome with commands, shortcuts, and more"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Omni - Bookmark, History, & Tab Manager एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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)                    

एक्सटेंशन की मूल जानकारी

नाम Omni - Bookmark, History, & Tab Manager Omni - Bookmark, History, & Tab Manager
ID mapjgeachilmcbbokkgcbgpbakaaeehi
आधिकारिक URL https://chromewebstore.google.com/detail/omni-bookmark-history-tab/mapjgeachilmcbbokkgcbgpbakaaeehi
विवरण Supercharge Chrome with commands, shortcuts, and more
फ़ाइल का आकार 1.91 MB
स्थापना संख्या 22,845
वर्तमान संस्करण 1.4.7
अंतिम अपडेट 2022-03-22
प्रकाशन तिथि 2022-01-10
रेटिंग 4.65/5 कुल 55 रेटिंग्स
डेवलपर Alyssa X
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/alyssaxuu/omni
सहायता पृष्ठ URL https://github.com/alyssaxuu/omni/issues
गोपनीयता नीति पृष्ठ URL https://alyssax.com/x/screenity/privacy
समर्थित भाषाएँ 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\/*",
        "*:\/\/*\/*"
    ]
}